iconoir/iconoir.com/components/Layout.tsx

13 lines
233 B
TypeScript

import React from 'react';
import { GA } from './GA';
export interface LayoutProps {}
export function Layout({ children }: React.PropsWithChildren<LayoutProps>) {
return (
<div>
<GA />
{children}
</div>
);
}