import React from 'react'; import { Link } from 'react-router-dom'; const TestApp: React.FC<{ name: string, route: string, components: string[], hooks: string[] }> = ({ name, route, components, hooks }) => { const componentList = components.map(component =>