#
luxiaotao1123
2024-10-07 afac377f99fd8d2cd24c2ac73555a9f20426ef1d
1
2
3
4
5
6
7
8
9
10
11
import { LoadingIndicator, LocalesMenuButton } from 'react-admin';
 
import { ThemeSwapper } from '../themes/ThemeSwapper';
 
export const AppBarToolbar = () => (
    <>
        <LocalesMenuButton />
        <ThemeSwapper />
        <LoadingIndicator />
    </>
);