9 lines
168 B
JavaScript
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>
|
|
</>
|
|
)
|
|
}
|