generated from dwd/boilarplate-remix-tailwind-antd
s1
This commit is contained in:
19
app/routes/admin.new-question.tsx
Normal file
19
app/routes/admin.new-question.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user