Basic React Project

This commit is contained in:
Jake Runyan 2024-12-24 10:54:19 -10:00
parent 181bc894d5
commit 8f8cb9f0df

View File

@ -1,2 +1,17 @@
# jakesphotos # jakesphotos
A simple photography portfolio page. A simple photography portfolio page written in vanilla React.
## First Time Setup
1. Create basic react app.
```
npx create-react-app portfolio
```
2. Install missing packages
```
npm install web-vitals
```
3. Test changes/fixes with
```
npm install
npm start
```