keycloak-demo-frontend/src/components/Pages/Home/index.tsx

11 lines
296 B
TypeScript

import React, { memo } from 'react';
import classNames from 'classnames';
import Styles from './index.module.css';
function Home(): React.ReactElement {
/* Global & Local State */
/* Main */
return <div className={classNames(Styles.homeContainer)}>Home</div>;
}
export default memo(Home);