@@ -96,6 +96,26 @@ import {
9696 Organizations as UserButtonOrganizations ,
9797 User as UserButtonUser ,
9898} from '../stories/user-button.stories' ;
99+ import {
100+ Default as UserProfileAccountSectionDefault ,
101+ meta as userProfileAccountSectionMeta ,
102+ } from '../stories/user-profile-account-section.stories' ;
103+ import {
104+ Default as UserProfileConnectedAccountsSectionDefault ,
105+ meta as userProfileConnectedAccountsSectionMeta ,
106+ } from '../stories/user-profile-connected-accounts-section.stories' ;
107+ import {
108+ Default as UserProfileDeleteSectionDefault ,
109+ meta as userProfileDeleteSectionMeta ,
110+ } from '../stories/user-profile-delete-section.stories' ;
111+ import {
112+ Default as UserProfileProfilePanelDefault ,
113+ meta as userProfileProfilePanelMeta ,
114+ } from '../stories/user-profile-profile-panel.stories' ;
115+ import {
116+ Default as UserProfileWeb3WalletsSectionDefault ,
117+ meta as userProfileWeb3WalletsSectionMeta ,
118+ } from '../stories/user-profile-web3-wallets-section.stories' ;
99119import { toSlug } from './slug' ;
100120import type { StoryModule } from './types' ;
101121
@@ -204,9 +224,35 @@ const scrollAreaModule: StoryModule = {
204224
205225const useDataTableModule : StoryModule = { meta : useDataTableMeta } ;
206226
227+ const userProfileAccountSectionModule : StoryModule = {
228+ meta : userProfileAccountSectionMeta ,
229+ Default : UserProfileAccountSectionDefault ,
230+ } ;
231+ const userProfileProfilePanelModule : StoryModule = {
232+ meta : userProfileProfilePanelMeta ,
233+ Default : UserProfileProfilePanelDefault ,
234+ } ;
235+ const userProfileConnectedAccountsSectionModule : StoryModule = {
236+ meta : userProfileConnectedAccountsSectionMeta ,
237+ Default : UserProfileConnectedAccountsSectionDefault ,
238+ } ;
239+ const userProfileWeb3WalletsSectionModule : StoryModule = {
240+ meta : userProfileWeb3WalletsSectionMeta ,
241+ Default : UserProfileWeb3WalletsSectionDefault ,
242+ } ;
243+ const userProfileDeleteSectionModule : StoryModule = {
244+ meta : userProfileDeleteSectionMeta ,
245+ Default : UserProfileDeleteSectionDefault ,
246+ } ;
247+
207248export const registry : StoryModule [ ] = [
208249 // User
209250 userButtonModule ,
251+ userProfileProfilePanelModule ,
252+ userProfileAccountSectionModule ,
253+ userProfileConnectedAccountsSectionModule ,
254+ userProfileWeb3WalletsSectionModule ,
255+ userProfileDeleteSectionModule ,
210256 // Components
211257 avatarModule ,
212258 badgeModule ,
0 commit comments