File size: 936 Bytes
18847f3 c2c7576 18847f3 bc2c276 18847f3 ea6c2a8 8fc9f17 ea6c2a8 745c643 ea6c2a8 745c643 ea6c2a8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import { useLocalStorage } from "react-use";
import { defaultHTML } from "./../../../utils/consts";
function Login({
html,
children,
}: {
html?: string;
children?: React.ReactNode;
}) {
const [, setStorage] = useLocalStorage("html_content");
const handleClick = () => {
if (html !== defaultHTML) {
setStorage(html);
}
};
return (
<>
<header className="flex items-center text-sm px-4 py-2 border-b border-gray-200 gap-2 bg-gray-100 font-semibold text-gray-700">
<span className="text-xs bg-red-500/10 text-red-500 rounded-full pl-1.5 pr-2.5 py-0.5 flex items-center justify-start gap-1.5">
ВАЖНО
</span>
На сегодня лимит использован
</header>
<main className="px-4 py-4 space-y-3">
{children}
<a href="/api/login" onClick={handleClick}>
</a>
</main>
</>
);
}
export default Login;
|