import React from 'react'; interface Props { fullWidth?: 0 | 1 | boolean; } const Component: React.FC = ({ fullWidth, children, ...rest }) => { return (
{children}
); }; //==================== function App() { component; }