Files
hot-api-center/src/apps/bg.tsx
2025-12-06 19:29:34 +08:00

18 lines
329 B
TypeScript

export const BG = (props: { children: React.ReactNode }) => {
return (
<div
style={{
position: 'fixed',
top: 0,
left: 0,
width: '100vw',
height: '100vh',
backgroundColor: 'rgba(0, 0, 0, 0.5)',
zIndex: -1,
}}
>
{props.children}
</div>
);
}