Files
cinny/src/app/pages/App.jsx
T

13 lines
273 B
React
Raw Normal View History

2021-07-28 18:45:52 +05:30
import React from 'react';
2021-09-14 09:30:37 +02:00
import { isAuthenticated } from '../../client/state/auth';
2021-07-28 18:45:52 +05:30
import Auth from '../templates/auth/Auth';
import Client from '../templates/client/Client';
function App() {
2021-11-19 13:20:34 +05:30
return isAuthenticated() ? <Client /> : <Auth />;
2021-07-28 18:45:52 +05:30
}
export default App;