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?
It's a TypeScript compilation error, meaning you should either disable typescript in this function:
or pass the correct Redux store type for a react-admin app: