import clsx from "clsx"; import { useExcalidrawAppState } from "../App"; import "./FooterCenter.scss"; const FooterCenter = ({ children }: { children?: React.ReactNode }) => { const appState = useExcalidrawAppState(); return (
{children}
); }; export default FooterCenter; FooterCenter.displayName = "FooterCenter";