import { Box, Tooltip } from "@mui/material"; import React from "react"; const TwoLineCell: React.FC<{ children: React.ReactNode }> = ({ children }) => { return ( {children} ); }; export default TwoLineCell;