#
luxiaotao1123
2025-02-09 d2b1476f5c856f4ada88c04f052d191614ce82f9
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 />
    </>
);