import React from 'react'; import type { Template } from '~/types/template'; import { STARTER_TEMPLATES } from '~/utils/constants'; interface FrameworkLinkProps { template: Template; } const FrameworkLink: React.FC = ({ template }) => (
); const StarterTemplates: React.FC = () => { return (
or start a blank app with your favorite stack
{STARTER_TEMPLATES.map((template) => ( ))}
); }; export default StarterTemplates;