16 lines
390 B
TypeScript
Raw Normal View History

2024-07-16 09:11:03 +00:00
import { Box } from '@chakra-ui/react';
import { Branding } from '~/components/Branding/Branding';
import { TopSpacing } from '~/components/Layout/TopSpacing';
import { Raw } from '~/components/MongoDB/Raw';
import { RawResults } from '~/components/MongoDB/RawResults';
export default function branding() {
const template = (
<>
<Branding />
</>
);
return template;
}