-
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.
- Loading branch information
1 parent
98ec399
commit a0d2289
Showing
1 changed file
with
49 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,55 @@ | ||
import { Nav } from '@/shared'; | ||
import { Box, Button, Flex, Input } from '@chakra-ui/react'; | ||
import { Body, Nav, Typography } from '@/shared'; | ||
|
||
export const NewNote = () => ( | ||
<> | ||
<Nav /> | ||
<div>새 노트</div> | ||
<Body> | ||
<Flex | ||
flexDirection="column" | ||
style={{ | ||
padding: '29px 0px 24px', | ||
}} | ||
> | ||
<Box | ||
style={{ | ||
margin: 0, | ||
paddingBottom: '14px', | ||
}} | ||
> | ||
<Typography variant="subtitle1">노트 정보를 입력해 주세요</Typography> | ||
</Box> | ||
<Input placeholder="새로운 노트" maxWidth="250px" /> | ||
</Flex> | ||
<Box> | ||
<Flex flexDirection="row" justifyContent="flex-start" alignItems="center"> | ||
<Box | ||
style={{ | ||
width: '100%', | ||
margin: 0, | ||
// paddingBottom: '14px', | ||
// paddingRight: '30px', | ||
}} | ||
> | ||
<Typography variant="subtitle1">폴더</Typography> | ||
</Box> | ||
<Button>전체 노트</Button> | ||
</Flex> | ||
<Flex flexDirection="row" justifyContent="flex-start" alignItems="center"> | ||
<Box | ||
style={{ | ||
width: '100%', | ||
maxWidth: '100px', | ||
margin: 0, | ||
// paddingBottom: '14px', | ||
// paddingRight: '30px', | ||
}} | ||
> | ||
<Typography variant="subtitle1">메모</Typography> | ||
</Box> | ||
<Input placeholder="메모를 작성해 보세요." /> | ||
</Flex> | ||
</Box> | ||
</Body> | ||
</> | ||
); |