This commit is contained in:
2020-08-22 14:56:41 +02:00
parent 79d89f266a
commit 26028445bf
16 changed files with 315 additions and 176 deletions

View File

@@ -6,6 +6,7 @@ import {
} from 'react-router-dom';
import Encrypt from './screens/Encrypt';
import Decrypt from './screens/Decrypt';
import Welcome from './screens/Welcome';
import Debug from './screens/Debug';
@@ -18,6 +19,9 @@ const AppRouter: React.FC = () => (
<Route path="/welcome">
<Welcome />
</Route>
<Route path="/decrypt">
<Decrypt />
</Route>
<Route path="/">
<Encrypt />
</Route>