diff options
author | 2023-01-24 19:09:39 -0800 | |
---|---|---|
committer | 2023-01-24 19:09:39 -0800 | |
commit | ac7aff1b47b0b271d2afb010f3ffd199b9b6685d (patch) | |
tree | c6bfdae5dcca1e87fc951d06325da838f59cee4d /examples/react-file-system-router/pages/index.tsx | |
parent | d714df48f9f47208584e6d8b91271afbcd230f70 (diff) | |
download | bun-ac7aff1b47b0b271d2afb010f3ffd199b9b6685d.tar.gz bun-ac7aff1b47b0b271d2afb010f3ffd199b9b6685d.tar.zst bun-ac7aff1b47b0b271d2afb010f3ffd199b9b6685d.zip |
Add FileSystemRouter + React example (#1894)
Diffstat (limited to 'examples/react-file-system-router/pages/index.tsx')
-rw-r--r-- | examples/react-file-system-router/pages/index.tsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/react-file-system-router/pages/index.tsx b/examples/react-file-system-router/pages/index.tsx new file mode 100644 index 000000000..b2d9e735e --- /dev/null +++ b/examples/react-file-system-router/pages/index.tsx @@ -0,0 +1,17 @@ +// reachable from http://localhost:3000/ + +export default () => ( + <html> + <head> + <title>index</title> + </head> + <body> + <h1> + <a href="/one" >one</a> + </h1> + <h1> + <a href="/two" >two</a> + </h1> + </body> + </html> +)
\ No newline at end of file |