feat: move extensions from prefs menu's left pane to General->Advanced section (#718)

This commit is contained in:
Vardan Hakobyan
2021-11-03 22:45:50 +04:00
committed by GitHub
parent 04fab80adb
commit bbc81ea276
12 changed files with 179 additions and 77 deletions

View File

@@ -1,5 +1,11 @@
import { FunctionComponent } from 'preact';
export const PreferencesSegment: FunctionComponent = ({ children }) => (
<div className="flex flex-col">{children}</div>
type Props = {
classes?: string;
}
export const PreferencesSegment: FunctionComponent<Props> = ({
children,
classes = ''
}) => (
<div className={`flex flex-col ${classes}`}>{children}</div>
);