blob: a6f40bea7982bfbe35ae11c298ec826653e269a8 [file] [log] [blame]
Jiarenxiang38dcb052025-03-13 16:40:09 +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={() => {
zhaoyumaof8f81842025-06-09 00:00:46 +080025 window.open('https://kdocs.cn/l/cukLn6L241Ou');
Jiarenxiang38dcb052025-03-13 16:40:09 +080026 }}
27 >
28 <QuestionCircleOutlined />
29 </div>
30 );
31};