[タスク 1176: 開発環境コンテナの構築(Client/Server)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/OMDSDictation/_workitems/edit/1176) 開発用コンテナを構築しました。以下のコンテナを追加しています。 - ライセンス管理 - server - client - ディクテーション管理 - server - client - DB(MySQL) - Cache(Redis)
16 lines
333 B
TypeScript
16 lines
333 B
TypeScript
import { Route, Routes } from "react-router-dom";
|
|
import styled from "styled-components";
|
|
import SamplePage from "pages/SamplePage";
|
|
|
|
const AppRouter: React.FC = () => (
|
|
<BaseDiv>
|
|
<Routes>
|
|
<Route path="/" element={<SamplePage />} />
|
|
</Routes>
|
|
</BaseDiv>
|
|
);
|
|
|
|
const BaseDiv = styled.div``;
|
|
|
|
export default AppRouter;
|