mirror of
https://github.com/noahpaige/portfolio-website.git
synced 2026-06-09 00:28:02 -06:00
13 lines
181 B
TypeScript
13 lines
181 B
TypeScript
import { useState } from "react";
|
|
import "../App.css";
|
|
|
|
function Work() {
|
|
return (
|
|
<div className="h-full w-full">
|
|
<h1>Work</h1>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Work;
|