Skip to content

Commit

Permalink
Merge pull request #21 from AnoshMalik/feature/Bootstrap-Button
Browse files Browse the repository at this point in the history
added_bootstrap_button
  • Loading branch information
azadehroshan authored Apr 26, 2023
2 parents 8ac0d4a + 2ab455a commit a842c4c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions client/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<title>Starter Kit</title>
<!-- link to bootstrap -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
2 changes: 2 additions & 0 deletions client/src/pages/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { Link } from "react-router-dom";*/
import Header from "../Components/Header";
import Footer from "../Components/Footer";
import Button from "react-bootstrap/Button";

import "./Home.css";
// import logo from "./logo.svg";
Expand Down Expand Up @@ -38,6 +39,7 @@ export function Home() {
rows="10"
cols="50"
></textarea>
<Button variant="primary">bootstrap button</Button>

<Footer />
</div>
Expand Down

0 comments on commit a842c4c

Please sign in to comment.