import { createSignal, onMount } from "solid-js"; export default function CommentLock() { const [currentPath, setCurrentPath] = createSignal("/auth/login"); onMount(() => { const path = window.location.pathname; setCurrentPath(`/auth/login?redirect=${encodeURIComponent(path)}`); }); return (
Нет аккаунта?{" "} Зарегистрироваться