import { FC } from "react"; import { Group } from "@mantine/core"; import InlineButton from "@/components/ui/InlineButton/InlineButton"; type Props = { onCreateClick: () => void; }; const BarcodeTemplatesDesktopHeader: FC = ({ onCreateClick }) => { return ( Создать шаблон ); }; export default BarcodeTemplatesDesktopHeader;