feat(preferences): Tools segment (#657)

This commit is contained in:
Aman Harwara
2021-09-29 23:21:48 +05:30
committed by GitHub
parent 091842555f
commit 7dbfa2fde0
5 changed files with 140 additions and 111 deletions

View File

@@ -3,6 +3,7 @@ import { AppState } from '@/ui_models/app_state';
import { FunctionComponent } from 'preact';
import { PreferencesPane } from '../components';
import { ErrorReporting } from './general-segments';
import { Tools } from './general-segments/Tools';
interface GeneralProps {
appState: AppState;
@@ -11,6 +12,7 @@ interface GeneralProps {
export const General: FunctionComponent<GeneralProps> = (props) => (
<PreferencesPane>
<Tools application={props.application} />
<ErrorReporting appState={props.appState} />
</PreferencesPane>
);