You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Drift/client/app/admin/loading.tsx

14 lines
208 B
TypeScript

import { PostTable, UserTable } from "./page"
export default function AdminLoading() {
return (
<div>
<h1>Admin</h1>
<h2>Users</h2>
<UserTable />
<h2>Posts</h2>
<PostTable />
</div>
)
}