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