File size: 256 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import styles from './style.module.css'
export default function Template({ children }) {
return (
<>
<h1 className={styles.red}>
Template <span id="performance-now">{performance.now()}</span>
</h1>
{children}
</>
)
}
|