因此,我将自定义主题传递到<Admin />
中,该主题非常适合<Resource />
和loginPage
。但是,主题不适用于customRoutes={customRoutes}
中包含的组件。我该怎么办?
const theme = createTheme();
<Admin
{...providers}
loginPage={LoginPage}
history={history}
theme={theme}
customRoutes={customRoutes}
>
<Resource
name="organizations"
list={OrgList}
create={OrgCreate}
edit={OrgEdit as any}
/>
</Admin>