-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Milestone
Description
find the code here:
https://github.com/S-H-E-R-Development/Machine-Learning-A-2-Z-WEBSITE/blob/main/src/FOOTERS/BottomNavBar.js
import React from "react";
import './BottomNavBar.css';
import { Link } from "react-router-dom";
export default function BottomBar() {
return (
<footer>
<div className="copyright">
<h3>
An Open Source Project:
<Link to="https://github.com/S-H-E-R-Development/Machine-Learning-A-2-Z-WEBSITE" target="_blank">
GitHub-React
</Link>
<Link to="https://github.com/Machine-Learning-A-2-Z/00---Basics-of-ML" target="_blank">
GitHub-ML
</Link>
</h3>
</div>
</footer>
);
}
Hint: make a function of button and pass the LINK URL and LABEL NAME, in another word make reusable component of Text Button and call it.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers