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