Skip to content

Commit

Permalink
feat : App.tsx 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
GBAJS754 authored and jkea1 committed Sep 30, 2023
1 parent 1601a74 commit dc792e2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
3 changes: 1 addition & 2 deletions vite-project/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
"trailingComma": "none",
"endOfLine": "auto",
"bracketSameLine": false,
"semi": true,
"plugins": ["prettier-plugin-tailwindcss"]
"semi": true
}
15 changes: 8 additions & 7 deletions vite-project/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
import Button from '@/components/Button'
import { Box } from '@chakra-ui/react'
import Button from '@/components/Button';
import { Box } from '@chakra-ui/react';
function App() {

return (
<>
<div>프로젝트 초기 세팅 완료</div>
<Box bg='tomato' w='100%' p={4} color='white'>
<Box bg="tomato" w="100%" p={4} color="white">
This is the Box
</Box>
<Button/>
<Button />
<h1>아무거나 쓰기</h1>
<div>프로젝트 초기 세팅 완료!!!!!!!!우히히</div>
</>
)
);
}

export default App
export default App;

0 comments on commit dc792e2

Please sign in to comment.