diff --git a/samples/grids/grid/state-persistence-about/src/index.tsx b/samples/grids/grid/state-persistence-about/src/index.tsx index 54ca0c3e52..4c1bcdb0d1 100644 --- a/samples/grids/grid/state-persistence-about/src/index.tsx +++ b/samples/grids/grid/state-persistence-about/src/index.tsx @@ -15,7 +15,7 @@ export default function App() {

- Usually navigating to the previous page, components will reinitialize as per their initial configuration, therefore the IgrGrid will lose its state. + By default navigating to the previous page, components will reinitialize as per their initial configuration, therefore the IgrGrid will lose its state.
What our App Component does is reading the state from the window.localStorage object and applying the corresponding state in the `useEffect`` hook.
Go Back