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