Skip to main content
Module

x/valtio/website/pages/index.tsx

πŸ’Š Valtio makes proxy-state simple for React and Vanilla
Go to Latest
File
import { AnimatedShapes } from "~/components/LandingPage/AnimatedShapes";import { GettingStarted } from "~/components/LandingPage/GettingStarted";import { CodeExample } from "~/components/LandingPage/CodeExample";
const Home = () => { return ( <div className="min-h-screen landing-page-container"> <CodeExample /> <AnimatedShapes /> <GettingStarted className="large-screen" /> </div> );};
export default Home;