speice.io/pages/index.tsx

10 lines
125 B
TypeScript
Raw Normal View History

2023-04-15 12:55:22 -04:00
import React from "react";
export default function Page() {
2023-04-15 12:56:22 -04:00
return (
<>
<p>Is this thing on?</p>
</>
);
}