File size: 178 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import { useEffect } from 'react'
export default function Index(props) {
useEffect(() => {
throw new Error('this should render')
}, [])
return <div>Index Page</div>
}
|