12 lines
429 B
TypeScript
12 lines
429 B
TypeScript
import { FunctionComponent } from 'preact';
|
|
|
|
type Props = {
|
|
classes?: string;
|
|
}
|
|
export const PreferencesSegment: FunctionComponent<Props> = ({
|
|
children,
|
|
classes = ''
|
|
}) => (
|
|
<div className={`flex flex-col ${classes}`}>{children}</div>
|
|
);
|