import React, { FC, PropsWithChildren } from "react"; import { motion } from "framer-motion"; import { Box, Tabs } from "@mantine/core"; type Props = { value: string; }; const DealEditorTabPanel: FC> = ({ value, children, }) => { return ( {children} ); }; export default DealEditorTabPanel;