2024-06-17 14:29:49 +09:00

9 lines
168 B
JavaScript

export default function Intro() {
return (
<>
<h1>Intro</h1>
<p>Drawing on canvas 2D is a simple way to create graphics on the web.</p>
</>
)
}