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