Various formatting
This commit is contained in:
parent
f5d99b05d8
commit
67f7db340d
24
src/App.js
24
src/App.js
|
@ -1,22 +1,24 @@
|
|||
import { firebaseConfig } from "./config/Config.js"
|
||||
import { getApp, initializeApp } from "firebase/app"
|
||||
import { useState, useEffect } from "react"
|
||||
import { getFirestore,
|
||||
import {
|
||||
getFirestore,
|
||||
collection,
|
||||
getDoc,
|
||||
doc,
|
||||
getDocs } from "firebase/firestore";
|
||||
import {getStorage} from "firebase/storage"
|
||||
import Form from 'react-bootstrap/Form';
|
||||
import Button from 'react-bootstrap/Button';
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import Col from 'react-bootstrap/Col';
|
||||
getDocs
|
||||
} from "firebase/firestore";
|
||||
import { getStorage } from "firebase/storage"
|
||||
import Form from 'react-bootstrap/Form';
|
||||
import Button from 'react-bootstrap/Button';
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import Col from 'react-bootstrap/Col';
|
||||
|
||||
import './App.css'
|
||||
import './App.css'
|
||||
|
||||
|
||||
|
||||
function MyForm() {
|
||||
function MyForm() {
|
||||
const [selectedOptions, setSelectedOptions] = useState([]);
|
||||
|
||||
const handleCheckboxChange = (event) => {
|
||||
|
@ -85,6 +87,6 @@ import { getFirestore,
|
|||
</Form>
|
||||
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default MyForm;
|
||||
export default MyForm;
|
||||
|
|
Loading…
Reference in New Issue