index.tsx 593 B

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