generated from dwd/boilarplate-remix-tailwind-antd
17 lines
405 B
TypeScript
17 lines
405 B
TypeScript
import AdminNav from '~/components/AdminNav';
|
|
import React, { useEffect, useState } from 'react';
|
|
import QuizList from '~/components/QuizList';
|
|
import NewQuiz from '~/components/NewQuiz';
|
|
|
|
|
|
export default function AdminIndex(){
|
|
return (
|
|
<div>
|
|
<AdminNav />
|
|
<NewQuiz />
|
|
<div>
|
|
<QuizList />
|
|
</div>
|
|
</div>
|
|
);
|
|
} |