blob: 20a7831109e9865c6270ffd179b6e7935a75a48f [file] [log] [blame]
86133aaa3f5d2025-04-20 21:33:29 +08001import { QuestionCircleOutlined } from '@ant-design/icons';
2import { SelectLang as UmiSelectLang } from '@umijs/max';
3import React from 'react';
4
5export type SiderTheme = 'light' | 'dark';
6
7export const SelectLang = () => {
8 return (
9 <UmiSelectLang
10 style={{
11 padding: 4,
12 }}
13 />
14 );
15};
16
17export const Question = () => {
18 return (
19 <div
20 style={{
21 display: 'flex',
22 height: 26,
23 }}
24 onClick={() => {
25 window.open('https://pro.ant.design/docs/getting-started');
26 }}
27 >
28 <QuestionCircleOutlined />
29 </div>
30 );
31};