import type { V2_MetaFunction } from "@remix-run/react"; import {Link} from '@remix-run/react'; import { Layouts } from '@tesseract-design/viewfinder-react'; export const meta: V2_MetaFunction = () => { return [{ title: "New Remix App" }]; }; const IndexPage = () => { return (

Viewfinder Examples

Look at how the layouts are coded in the Git repository.

); } export default IndexPage;