Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
rabyeoljji committed Nov 30, 2024
1 parent ec608c5 commit 185852d
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions src/app/(routes)/document/(create)/file/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import Text from '@/shared/components/ui/text'
import { EditDocumentProvider } from '@/features/modify/context/edit-document-context'
import TitleInput from '@/features/modify/components/title-input'
import FixedBottom from '@/shared/components/custom/fixed-bottom'
import NewQuizDrawer from '@/features/quiz/components/new-quiz-drawer'
import { Button } from '@/shared/components/ui/button'
import CreateQuizDrawer from '@/features/write/components/create-quiz-drawer'

const CreateWithFilePage = () => {
return (
Expand Down Expand Up @@ -55,17 +54,8 @@ const CreateWithFilePage = () => {
</div> */}

<FixedBottom className="px-[20px]">
<NewQuizDrawer
triggerComponent={
<Button
variant={'largeRound'}
colors={'primary'}
className="flex-center h-[52px] w-full"
>
퀴즈 만들기
</Button>
}
/>
{/* TODO: file로 문서 생성하는 로직 필요 */}
<CreateQuizDrawer handleCreateDocument={() => {}} />
</FixedBottom>
</EditDocumentProvider>
)
Expand Down

0 comments on commit 185852d

Please sign in to comment.