9 lines
239 B
TypeScript
9 lines
239 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>
|
|
)
|