react-code-dataset
/
next.js
/test
/e2e
/app-dir
/app-css
/app
/template
/servercomponent
/template.js
| 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} | |
| </> | |
| ) | |
| } | |