[examples/openspending][xl]: implement dataset page v0.1, add pagination to the datasets grid

This commit is contained in:
deme
2023-05-18 18:24:36 -03:00
parent 2115a3fdb3
commit cc36dc1c62
18 changed files with 540 additions and 345 deletions

View File

@@ -0,0 +1,10 @@
import { Header } from '../Header';
export default function Layout({ children }) {
return (
<div className="bg-white min-h-screen">
<Header />
{children}
</div>
);
}