[タスク 1176: 開発環境コンテナの構築(Client/Server)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/OMDSDictation/_workitems/edit/1176) 開発用コンテナを構築しました。以下のコンテナを追加しています。 - ライセンス管理 - server - client - ディクテーション管理 - server - client - DB(MySQL) - Cache(Redis)
17 lines
376 B
TypeScript
17 lines
376 B
TypeScript
import AppRouter from "AppRouter";
|
|
import { useEffect } from "react";
|
|
import { useDispatch, useSelector } from "react-redux";
|
|
import { BrowserRouter } from "react-router-dom";
|
|
import { GlobalStyle } from "styles/GlobalStyle";
|
|
|
|
const App = (): JSX.Element => (
|
|
<>
|
|
<GlobalStyle />
|
|
<BrowserRouter>
|
|
<AppRouter />
|
|
</BrowserRouter>
|
|
</>
|
|
);
|
|
|
|
export default App;
|