cloudflare/vinext
Publicmirrored from https://github.com/cloudflare/vinextAvailable
tests/fixtures/app-basic/app/alias-test/page.tsx
13lines · modecode
| 1 | import Counter from "@/app/components/counter"; |
| 2 | import ClientOnlyWidget from "@/app/components/client-only-widget"; |
| 3 | |
| 4 | export default function AliasTestPage() { |
| 5 | return ( |
| 6 | <div> |
| 7 | <h1>Alias Test</h1> |
| 8 | <p>This page imports components via tsconfig path alias @/</p> |
| 9 | <Counter /> |
| 10 | <ClientOnlyWidget /> |
| 11 | </div> |
| 12 | ); |
| 13 | } |
| 14 | |