aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/layout/AppLayout.tsx
diff options
context:
space:
mode:
authorLibravatar Muhamed <unknown>2023-05-27 01:32:44 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2023-05-27 18:10:24 +0530
commitb8950dde09cb41eac5dba40ae034abf7a5e6bdb2 (patch)
tree978c1649cd8fc51adc1253b9934491237d3f9ffc /src/components/layout/AppLayout.tsx
parentUpgrade 'pnpm' to '8.5.1' (diff)
downloadferdium-app-b8950dde09cb41eac5dba40ae034abf7a5e6bdb2.tar.gz
ferdium-app-b8950dde09cb41eac5dba40ae034abf7a5e6bdb2.tar.zst
ferdium-app-b8950dde09cb41eac5dba40ae034abf7a5e6bdb2.zip
update react version to 18.2.0 and it related changes
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