File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ import '@/store/resolveTestConfiguration'
66import MyButton from '../components/MyButton.vue'
77import LoginForm from '@/components/containers/loginForm.vue'
88import UserRegistrationForm from '@/components/containers/userRegistrationForm.vue'
9-
9+ import UserLoginPage from '@/pages/user/login.vue'
10+ import UserRegistrationPage from '@/pages/user/registration.vue'
1011
1112storiesOf ( 'Button' , module )
1213 . add ( 'with text' , ( ) => ( {
@@ -34,3 +35,13 @@ storiesOf('Containers', module)
3435 components : { UserRegistrationForm } ,
3536 template : '<UserRegistrationForm/>' ,
3637 } ) )
38+
39+ storiesOf ( 'Page' , module )
40+ . add ( 'UserLoginPage' , ( ) => ( {
41+ components : { UserLoginPage } ,
42+ template : '<UserLoginPage/>' ,
43+ } ) )
44+ . add ( 'UserRegistrationPage' , ( ) => ( {
45+ components : { UserRegistrationPage } ,
46+ template : '<UserRegistrationPage/>' ,
47+ } ) )
You can’t perform that action at this time.
0 commit comments