import { FunctionComponent } from 'preact' type Props = { classes?: string } export const PreferencesSegment: FunctionComponent = ({ children, classes = '' }) => (
{children}
)