diff --git a/frontend/src/Components/Create/Create.css b/frontend/src/Components/Create/Create.css index 166a53e..2ec4397 100644 --- a/frontend/src/Components/Create/Create.css +++ b/frontend/src/Components/Create/Create.css @@ -47,3 +47,4 @@ height: 25rem; } } + diff --git a/frontend/src/Components/Create/Create.js b/frontend/src/Components/Create/Create.js index 9fd1817..f800391 100644 --- a/frontend/src/Components/Create/Create.js +++ b/frontend/src/Components/Create/Create.js @@ -1,7 +1,7 @@ import "./Create.css"; import { useState } from "react"; import { useHistory } from "react-router-dom"; - +import 'bootstrap/dist/css/bootstrap.min.css'; const Create = () => { const [title, setTitle] = useState(""); const [thumbnail, setThumbnail] = useState(""); @@ -22,12 +22,20 @@ const Create = () => { history.push("/api/blogs"); }); } - return (