11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
|
import { lusitana } from '@/app/ui/fonts';
|
||
|
|
||
|
export default function Page () {
|
||
|
return (
|
||
|
<div className="w-full">
|
||
|
<div className="flex w-full items-center justify-between">
|
||
|
<h1 className={`${lusitana.className} text-2xl`}>Table distributions</h1>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|