Files
portfolio-website/src/Components/Work.tsx
T

13 lines
181 B
TypeScript
Raw Normal View History

2023-03-10 21:35:09 -07:00
import { useState } from "react";
import "../App.css";
function Work() {
return (
<div className="h-full w-full">
<h1>Work</h1>
</div>
);
}
export default Work;