40 |
41 | {`${time.getHours().toString().padStart(2,'0')}:${time.getMinutes().toString().padStart(2,'0')}`}
42 |
43 |
46 |
47 | >
48 | )
49 | }
50 |
51 | export default Home
52 |
--------------------------------------------------------------------------------
/pages/integral.tsx:
--------------------------------------------------------------------------------
1 | import type { NextPage } from 'next'
2 | import { useRouter } from 'next/router'
3 | import { useState } from 'react'
4 | import MathJax from "react-mathjax"
5 | import styles from '../styles/Home.module.css'
6 |
7 | const Integral: NextPage