Remove default React splash

This commit is contained in:
Ray 2024-01-01 12:57:46 +00:00 committed by GitHub
parent 38dc6c5aa8
commit e244a4a5ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 23 deletions

View File

@ -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