From b326a01afca4797ca22712c56b2337503b58e5b2 Mon Sep 17 00:00:00 2001 From: Joanavel Pascual Date: Sun, 5 Nov 2023 15:56:17 -0500 Subject: [PATCH] manifest.json error --- .env | 1 + .gitignore | 24 +++++++++++++++++++++++- public/manifest.json | 0 src/components/Navbar.js | 9 +++++++++ 4 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 .env create mode 100644 public/manifest.json diff --git a/.env b/.env new file mode 100644 index 0000000..4aa509b --- /dev/null +++ b/.env @@ -0,0 +1 @@ +REACT_APP_API_URL=http://localhost:4005 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 3c3629e..24cdedf 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,23 @@ -node_modules +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* \ No newline at end of file diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..e69de29 diff --git a/src/components/Navbar.js b/src/components/Navbar.js index e69de29..ed1d4be 100644 --- a/src/components/Navbar.js +++ b/src/components/Navbar.js @@ -0,0 +1,9 @@ +import React from 'react' + +function Navbar() { + return ( +
Navbar
+ ) +} + +export default Navbar \ No newline at end of file