PHP Classes

File: frontend/pages/index.tsx

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   PHP App Generator   frontend/pages/index.tsx   Download  
File: frontend/pages/index.tsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP App Generator
Generate Web applications using Laravel
Author: By
Last change: Update of frontend/pages/index.tsx
Date: 1 year ago
Size: 334 bytes
 

Contents

Class file image Download
import MainLayout from '../components/layouts/MainLayout' import styles from '../styles/Home.module.css' import { NextFunctionComponent } from 'next' type Props = { // } const Home: NextFunctionComponent<Props> = () => { return ( <div className={styles.container}> <MainLayout /> </div> ) } export default Home