#
luxiaotao1123
2026-01-05 b0d63d1eecb2e0d88dde8fd1a5bf8574b56b9cbb
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 />
    </>
);