Create site that returns the word "about"

This commit is contained in:
Ray 2023-09-05 08:48:47 +00:00 committed by GitHub
parent 2a4e8b9259
commit 1593b33ae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,3 @@
export function About ( props ) {
return ( <h1>About</h1>)
}