UNPKG

react-back-button

Version:

A reusable back button component for React applications.

20 lines (15 loc) 310 B
# React Back Button Component A reusable back button component for React applications. ## Installation ```npm npm install react-back-button Usage import React from "react"; import BackButton from "react-back-button"; const MyComponent = () => { return ( <div> <BackButton /> </div> ); };