import { CSSProperties, FC, ReactNode } from "react"; import classNames from "classnames"; import styles from "@/components/layout/SmallPageBlock/SmallPageBlock.module.css"; import { Box } from "@mantine/core"; type Props = { children: ReactNode; style?: CSSProperties; active?: boolean; }; const SmallPageBlock: FC = ({ children, style, active = false }) => { return ( {children} ); }; export default SmallPageBlock;