import React from 'react'; import {Link} from "react-router-dom"; import {IndexJSON} from "../sheet/types"; interface Props { readonly data: IndexJSON; } const Sheet = (p: {readonly name: string; readonly doc?: string;}) => { return (
{p.name}
); }; const Home = (p: Props) => { const numModules = p.data.sheets.length; return ( <>

{p.data.name}

This website contains the is the code architecture for {p.data.name}. The architecture of this codebase is divided into {numModules} modules. Browse the architecture by clicking into each of the modules.

Modules:

{p.data.sheets.map(s =>
)} ); }; export default Home;