14 lines
286 B
TypeScript
14 lines
286 B
TypeScript
'use client';
|
|
|
|
import UserForm from '../../components/UserForm';
|
|
import UserTable from '../../components/UserTable';
|
|
|
|
export default function Administration() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<UserForm onUserCreated={() => {}} />
|
|
<UserTable />
|
|
</div>
|
|
);
|
|
}
|