blob: a6f40bea7982bfbe35ae11c298ec826653e269a8 [file] [log] [blame]
import { QuestionCircleOutlined } from '@ant-design/icons';
import { SelectLang as UmiSelectLang } from '@umijs/max';
import React from 'react';
export type SiderTheme = 'light' | 'dark';
export const SelectLang = () => {
return (
<UmiSelectLang
style={{
padding: 4,
}}
/>
);
};
export const Question = () => {
return (
<div
style={{
display: 'flex',
height: 26,
}}
onClick={() => {
window.open('https://kdocs.cn/l/cukLn6L241Ou');
}}
>
<QuestionCircleOutlined />
</div>
);
};