diff --git a/src/App.tsx b/src/App.tsx index c99002c..c31e3d8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -14,6 +14,7 @@ import { Icon, Theme } from './themes/interface'; import { fishermanTheme } from './themes/fisherman'; import { jinlunTheme } from './themes/jinlun'; import { ikunTheme } from './themes/ikun'; +import { BeiAn } from './themes/BeiAn'; // 主题 const themes = [defaultTheme, fishermanTheme, jinlunTheme, ikunTheme]; @@ -444,6 +445,8 @@ const App: FC = () => {

+ + {finished && (

{tipText}

diff --git a/src/themes/BeiAn.tsx b/src/themes/BeiAn.tsx new file mode 100644 index 0000000..43f9309 --- /dev/null +++ b/src/themes/BeiAn.tsx @@ -0,0 +1,15 @@ +import React, { FC } from 'react'; + +export const BeiAn: FC = () => { + return ( +

+ + 浙ICP备17007857号-2 + +

+ ); +};