mirror of
https://github.com/noahpaige/portfolio-website.git
synced 2026-06-09 00:28:02 -06:00
9 lines
142 B
React
9 lines
142 B
React
import { useState } from "react";
|
|
import "./App.css";
|
|
import Home from "./Pages/Home";
|
|
|
|
export default function App() {
|
|
return <Home />;
|
|
}
|
|
|