react-code-dataset / next.js /bench /nested-deps-app-router /app /server-and-client-components /client-component.js
| 'use client' | |
| import React from 'react' | |
| import Comp from '../../components/index.jsx' | |
| export default function Home() { | |
| return ( | |
| <> | |
| <h1>Hello!</h1> | |
| <Comp /> | |
| </> | |
| ) | |
| } | |