-
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.
feat(core): add page wireframe and configure global style and theme
- Loading branch information
Sourny
committed
Sep 29, 2024
1 parent
01e6b66
commit 1980bda
Showing
12 changed files
with
23,353 additions
and
17,402 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
import { FooterWrapper } from '@react-monorepo/shared-ui'; | ||
|
||
export const Footer = () => { | ||
return <FooterWrapper>This is a footer</FooterWrapper>; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
import { HeaderWrapper } from '@react-monorepo/shared-ui'; | ||
|
||
export const Header = (): React.ReactElement => { | ||
return <HeaderWrapper>this is a header</HeaderWrapper>; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
import { MainWrapper } from '@react-monorepo/shared-ui'; | ||
|
||
export const MainContent = () => { | ||
return <MainWrapper>page body</MainWrapper>; | ||
}; |
Oops, something went wrong.