callender.js 349 B

1234567891011121314151617
  1. import Head from 'next/head'
  2. import styles from '../styles/Layout.module.css'
  3. import CustomDay from '../components/calender_comp'
  4. const temp1 = () => {
  5. return (
  6. <div className={styles.container}>
  7. <Head>
  8. <title> callender</title>
  9. </Head>
  10. <h1>callender</h1>
  11. <CustomDay/>
  12. </div>
  13. )
  14. }
  15. export default temp1