Skip to content
Snippets Groups Projects
Commit 5479abff authored by Asgher Merchant's avatar Asgher Merchant
Browse files

Delete Navigation.js

parent 74f26128
No related merge requests found
import React from 'react';
import { NavLink } from 'react-router-dom';
const Navigation = () => {
return (
// This is a functional React component that returns a div element with three NavLink components inside.
//Each NavLink component represents a link to a different route.
<div>
<NavLink to="/">Home</NavLink>
<NavLink to="/about">About</NavLink>
<NavLink to="/themes">Themes</NavLink>
</div>
);
}
export default Navigation;
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment