-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* RegisterForm content width from 2 to 1 * Profile export name renaming * ProfileDetail contentWidth from 2 to 1 * all registration components delegate to the strom/registracia page * Profile contentWidth from 2 to 1 * Profile contentWidth back to 2
- Loading branch information
1 parent
e551af0
commit 505ee37
Showing
7 changed files
with
16 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
import {NextPage} from 'next' | ||
|
||
import {PageLayout} from '@/components/PageLayout/PageLayout' | ||
import {RegisterForm} from '@/components/RegisterForm/RegisterForm' | ||
import Page from '../strom/registracia' | ||
|
||
const Register: NextPage = () => ( | ||
<PageLayout contentWidth={2} title="Registrácia"> | ||
<RegisterForm /> | ||
</PageLayout> | ||
) | ||
const Register: NextPage = () => { | ||
return <Page /> | ||
} | ||
|
||
export default Register |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
import {NextPage} from 'next' | ||
|
||
import {PageLayout} from '@/components/PageLayout/PageLayout' | ||
import {RegisterForm} from '@/components/RegisterForm/RegisterForm' | ||
import Page from '../strom/registracia' | ||
|
||
const Register: NextPage = () => ( | ||
<PageLayout contentWidth={2} title="Registrácia"> | ||
<RegisterForm /> | ||
</PageLayout> | ||
) | ||
const Register: NextPage = () => { | ||
return <Page /> | ||
} | ||
|
||
export default Register |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters