10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
export default function MusicProjectPage() {
|
|
return (
|
|
<div>
|
|
<h1>Music Project Page</h1>
|
|
|
|
<p>This is where I'll keep a running list of my projects</p>
|
|
</div>
|
|
)
|
|
}
|