mirror of
https://github.com/oven-sh/bun
synced 2026-02-17 22:32:06 +00:00
* Add install bench * Update scripts and readme * remove lockfiles * Format bench * Add dev instructions
31 lines
823 B
TypeScript
31 lines
823 B
TypeScript
import type { V2_MetaFunction } from "@remix-run/node";
|
|
|
|
export const meta: V2_MetaFunction = () => {
|
|
return [{ title: "New Remix App" }];
|
|
};
|
|
|
|
export default function Index() {
|
|
return (
|
|
<div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.4" }}>
|
|
<h1>Welcome to Remix</h1>
|
|
<ul>
|
|
<li>
|
|
<a target="_blank" href="https://remix.run/tutorials/blog" rel="noreferrer">
|
|
15m Quickstart Blog Tutorial
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a target="_blank" href="https://remix.run/tutorials/jokes" rel="noreferrer">
|
|
Deep Dive Jokes App Tutorial
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a target="_blank" href="https://remix.run/docs" rel="noreferrer">
|
|
Remix Docs
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|