How to access the "admin" object from Theming example in docs?

174 Views Asked by At

The React-Admin's "Theming" documentation uses the following line of code in some examples:

        const open = useSelector(state => state.admin.ui.sidebarOpen);

It does not work as it is. What else needs to be done to access the "sidebarOpen" property?

1

There are 1 best solutions below

0
On BEST ANSWER

It's a TypeScript compilation error, meaning you should either disable typescript in this function:

const open = useSelector((state: any) => state.admin.ui.sidebarOpen);

or pass the correct Redux store type for a react-admin app:

import { ReduxState } from 'react-admin';

const open = useSelector((state: ReduxState) => state.admin.ui.sidebarOpen);