chore: lint
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
import { FunctionComponent } from 'preact'
|
||||
import { HorizontalSeparator } from '@/Components/Shared/HorizontalSeparator'
|
||||
|
||||
const HorizontalLine: FunctionComponent<{ index: number; length: number }> = ({ index, length }) =>
|
||||
(index < length - 1 ? <HorizontalSeparator classes="my-4" /> : null)
|
||||
const HorizontalLine: FunctionComponent<{ index: number; length: number }> = ({ index, length }) => {
|
||||
return index < length - 1 ? <HorizontalSeparator classes="my-4" /> : null
|
||||
}
|
||||
|
||||
export const PreferencesGroup: FunctionComponent = ({ children }) => (
|
||||
<div className="bg-default border-1 border-solid rounded border-main px-6 py-6 flex flex-col mb-3">
|
||||
|
||||
Reference in New Issue
Block a user