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

23 lines
730 B
TypeScript

import React from 'react';
import { Redirect, Route, Switch } from 'react-router-dom';
import { LoginView } from './LoginView';
import bgImage from '../../../assets/images/bg.jpg';
export const EntryRoute = React.memo(() => {
return (
<div className="h-full flex flex-row">
<div className="w-142 sm:w-full bg-gray-600 h-full flex items-center justify-center">
<Switch>
<Route path="/entry/login" component={LoginView} />
<Redirect to="/entry/login" />
</Switch>
</div>
<div
className="flex-1 sm:hidden bg-center bg-cover bg-no-repeat"
// style={{ backgroundImage: `url(${bgImage})` }}
/>
</div>
);
});
EntryRoute.displayName = 'EntryRoute';