import type { ReactNode } from 'react' import React from 'react' import { PicassoLight, FixViewport, FontsLoader, SPACING_12, } from '@toptal/picasso-provider' import { Page, Container } from '@toptal/picasso' const App = ({ children }: { children: ReactNode }) => ( {children} ) const Index = () => (
Your app with a fixed viewport tag and fonts loaded
) export default Index