import { Button } from "@reactive-resume/ui"; import { cn } from "@reactive-resume/utils"; import { useResumeStore } from "@/client/stores/resume"; import { getSectionIcon } from "../shared/section-icon"; export const TemplateSection = () => { // TODO: Import templates from @reactive-resume/templates const templateList = ["rhyhorn"]; const setValue = useResumeStore((state) => state.setValue); const currentTemplate = useResumeStore((state) => state.resume.data.metadata.template); return (
{getSectionIcon("template")}

Template

{templateList.map((template) => ( ))}
); };