Skip to content

Latest commit

 

History

History

router

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

KeepAlive for React Router

Installation

npm install keepalive-for-react keepalive-for-react-router

v6+

npm install react-router-dom keepalive-for-react [email protected]

v7+

npm install react-router keepalive-for-react [email protected]

Usage

// v6+ [email protected]
// v7+ [email protected]
import KeepAliveRouteOutlet from "keepalive-for-react-router";

function Layout() {
    return (
        <div className="layout">
            <KeepAliveRouteOutlet />
        </div>
    );
}