The same component, in the framework you use

Every block in the registry is plain source you own after installing it. There is no runtime to keep in step.

import { Button } from '@/components/ui/button'import { Input } from '@/components/ui/input'import { Label } from '@/components/ui/label'export default function LoginPage() {  return (    <form action={signIn} className="mx-auto max-w-sm">      <h1>Welcome back</h1>      <p>Sign in to continue</p>      <Label htmlFor="email">Email</Label>      <Input id="email" name="email" type="email" required />      <Button type="submit">Continue</Button>    </form>  )}