You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/web/src/routes/Entry/index.tsx

18 lines
417 B
TypeScript

import React from 'react';
import { Redirect, Route, Switch } from 'react-router-dom';
import { LoginView } from './LoginView';
export const EntryRoute = React.memo(() => {
return (
<div>
<div>
<Switch>
<Route path="/entry/login" component={LoginView} />
<Redirect to="/entry/login" />
</Switch>
</div>
</div>
);
});
EntryRoute.displayName = 'EntryRoute';