Jiarenxiang | 38dcb05 | 2025-03-13 16:40:09 +0800 | [diff] [blame] | 1 | import { QuestionCircleOutlined } from '@ant-design/icons'; |
| 2 | import { SelectLang as UmiSelectLang } from '@umijs/max'; |
| 3 | import React from 'react'; |
| 4 | |
| 5 | export type SiderTheme = 'light' | 'dark'; |
| 6 | |
| 7 | export const SelectLang = () => { |
| 8 | return ( |
| 9 | <UmiSelectLang |
| 10 | style={{ |
| 11 | padding: 4, |
| 12 | }} |
| 13 | /> |
| 14 | ); |
| 15 | }; |
| 16 | |
| 17 | export const Question = () => { |
| 18 | return ( |
| 19 | <div |
| 20 | style={{ |
| 21 | display: 'flex', |
| 22 | height: 26, |
| 23 | }} |
| 24 | onClick={() => { |
zhaoyumao | f8f8184 | 2025-06-09 00:00:46 +0800 | [diff] [blame^] | 25 | window.open('https://kdocs.cn/l/cukLn6L241Ou'); |
Jiarenxiang | 38dcb05 | 2025-03-13 16:40:09 +0800 | [diff] [blame] | 26 | }} |
| 27 | > |
| 28 | <QuestionCircleOutlined /> |
| 29 | </div> |
| 30 | ); |
| 31 | }; |