mirror of
https://ghproxy.com/https://github.com/StreakingMan/solvable-sheep-game
synced 2025-12-13 23:17:46 +08:00
14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
import React, { FC } from 'react';
|
|
|
|
export const BeiAn: FC = () => {
|
|
return (
|
|
<a
|
|
href="https://beian.miit.gov.cn/"
|
|
target="_blank"
|
|
rel="noopener noreferrer nofollow"
|
|
>
|
|
浙ICP备17007857号-2
|
|
</a>
|
|
);
|
|
};
|