refactor: format and lint codebase (#971)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { FunctionComponent } from 'preact'
|
||||
|
||||
type Props = {
|
||||
classes?: string
|
||||
}
|
||||
export const PreferencesSegment: FunctionComponent<Props> = ({ children, classes = '' }) => (
|
||||
<div className={`flex flex-col ${classes}`}>{children}</div>
|
||||
)
|
||||
Reference in New Issue
Block a user