Spaces:
Running
Running
File size: 477 Bytes
f371b37 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import { useState } from "react";
function Home() {
const [isLoggedIn, setIsLoggedIn] = useState(false);
return (
<div>
<h1>Welcome to my TikTok clone!</h1>
{isLoggedIn ? (
<p>You are logged in. Click <a href="/profile">here</a> to go to your profile.</p>
) : (
<p>
<a href="/login">Login</a> or <a href="/signup">Signup</a> to start sharing
your videos!
</p>
)}
</div>
);
}
export default Home; |