10 lines
220 B
TypeScript
Raw Normal View History

2023-06-23 03:59:14 +00:00
export const config = { runtime: "edge" };
export default function Edge() {
return (
<div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.4" }}>
<h1>Welcome to Remix@Edge</h1>
</div>
);
}