| 1234567891011121314151617 |
- import Head from 'next/head'
- import styles from '../styles/Layout.module.css'
- import CustomDay from '../components/calender_comp'
- const temp1 = () => {
- return (
- <div className={styles.container}>
- <Head>
- <title> callender</title>
- </Head>
- <h1>callender</h1>
- <CustomDay/>
- </div>
- )
- }
- export default temp1
|