Usage
// app/layout.tsx
import { Base } from "@colonydb/anthill/Base";
import type { ReactNode } from "react";
type Props = {
children: ReactNode;
};
const RootLayout = ({ children }: Props) => (
<html>
<body>
<Base>
{children}
</Base>
</body>
</html>
);