aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/layout/AppLayout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/layout/AppLayout.tsx')
-rw-r--r--src/components/layout/AppLayout.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/layout/AppLayout.tsx b/src/components/layout/AppLayout.tsx
index 9ea5463a2..86b4e787e 100644
--- a/src/components/layout/AppLayout.tsx
+++ b/src/components/layout/AppLayout.tsx
@@ -1,4 +1,4 @@
1import React, { Component } from 'react'; 1import React, { Component, PropsWithChildren } from 'react';
2import { observer } from 'mobx-react'; 2import { observer } from 'mobx-react';
3import { defineMessages, injectIntl, WrappedComponentProps } from 'react-intl'; 3import { defineMessages, injectIntl, WrappedComponentProps } from 'react-intl';
4import { TitleBar } from 'electron-react-titlebar/renderer'; 4import { TitleBar } from 'electron-react-titlebar/renderer';
@@ -99,7 +99,7 @@ interface IState {
99} 99}
100 100
101@observer 101@observer
102class AppLayout extends Component<IProps, IState> { 102class AppLayout extends Component<PropsWithChildren<IProps>, IState> {
103 constructor(props) { 103 constructor(props) {
104 super(props); 104 super(props);
105 105