#
luxiaotao1123
2024-10-14 6d9ca1c086859b6a6f0fd931c4b9f44c0d9e5969
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 />
    </>
);