Remove default React splash
This commit is contained in:
parent
38dc6c5aa8
commit
e244a4a5ec
43
src/App.js
43
src/App.js
|
@ -1,25 +1,22 @@
|
||||||
import logo from './logo.svg';
|
// Import required components and modules from Firebase and Firebase Config
|
||||||
import './App.css';
|
import { firebaseConfig } from "./config/Config.js"
|
||||||
|
import { getApp, initializeApp } from "firebase/app"
|
||||||
|
import { useState, useEffect } from "react"
|
||||||
|
import { getApps } from "firebase/app";
|
||||||
|
import {
|
||||||
|
getFirestore,
|
||||||
|
collection,
|
||||||
|
getDocs,
|
||||||
|
addDoc
|
||||||
|
} from "firebase/firestore";
|
||||||
|
|
||||||
function App() {
|
// Import required compenets from Bootstrap and React-Boostrap
|
||||||
return (
|
import Form from 'react-bootstrap/Form';
|
||||||
<div className="App">
|
import Button from 'react-bootstrap/Button';
|
||||||
<header className="App-header">
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||||
<img src={logo} className="App-logo" alt="logo" />
|
import Col from 'react-bootstrap/Col';
|
||||||
<p>
|
import './App.css'
|
||||||
Edit <code>src/App.js</code> and save to reload.
|
|
||||||
</p>
|
|
||||||
<a
|
|
||||||
className="App-link"
|
|
||||||
href="https://reactjs.org"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
>
|
|
||||||
Learn React
|
|
||||||
</a>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default App;
|
|
||||||
|
|
||||||
|
export default App
|
Loading…
Reference in New Issue