"use client"; import { useState } from "react"; import { Button } from "@shared/components/button"; import { Checklist } from "@shared/components/checklist"; import { Collapse } from "@shared/components/collapse"; import { MaterialIcon } from "@shared/components/material-icon"; import { SeeMoreProps } from "@shared/components/see-more/types"; export const SeeMore: React.FC = props => { const { list, text } = props; const [showDetails, setShowDetails] = useState(true); return (
); }; SeeMore.displayName = "SeeMore"; export type { SeeMoreProps };