Open In App

Rebass Nav Link Component

Last Updated : 14 Feb, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

React Rebass is a front-end framework that was designed keeping react in mind. In this article, we will know how to use Nav Link Component in React rebass. Nav Link is an important component that is required in each development. So to create a Nav Link component we can import the Rebass Nav Link component.

Nav Link component is used to make a section of a page whose purpose is to provide navigation links.

Syntax:

<Link href='link' sx={{ fontWeight: 'bold' }}>Link</Link>

Creating React Application And Installing Module:

Step 1: Create a React application using the following command.

npx create-react-app foldername

Step 2: After creating your project folder i.e. foldername, move to it using the following command.

cd foldername

Step 3: Install React Rebass in your given directory.

npm i rebass

Project Structure: It will look like the following.

Example: This is the basic example that shows how to use the Nav Link component.

Javascript




import React from "react";
import { Link } from "rebass";
  
const App = () => {
  return (
    <div id='gfg'>
      <h2>GeeksforGeeks</h2>
      <h4>React Rebass Nav Link Component</h4>
      <Link
        href="https://www.geeksforgeeks.org/"
        sx={{
          fontWeight: 'bold',
          px: 2,
          py: 1,
          color: 'red',
        }}>
        Nav Link
      </Link>
    </div>
  );
};
  
export default App;


Step to Run Application: Run the application from the root directory of the project, using the following command.

npm start

Output:

Reference: https://rebassjs.org/recipes/nav-link


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads