import ComponentCard from "../../common/ComponentCard"; import FileInput from "../input/FileInput"; import Label from "../Label"; export default function FileInputExample() { const handleFileChange = (event: React.ChangeEvent) => { const file = event.target.files?.[0]; if (file) { console.log("Selected file:", file.name); } }; return (
); }