1
0
mirror of https://github.com/Fayorg/calendrier-avant.git synced 2026-05-27 17:18:38 +02:00

fix: removed shadcn imports

This commit is contained in:
2023-12-05 21:16:39 +01:00
parent 2dce3679d1
commit 15516490a8

View File

@@ -2,8 +2,6 @@
import { useState } from 'react';
import { useRouter } from 'next/navigation';
import { Button } from "@components/ui/button";
import { Input } from "@/components/ui/input"
export default function Home() {
const [password, setPassword] = useState('');
@@ -24,8 +22,6 @@ export default function Home() {
<input type="password" id="password" name="password" value={password} onChange={(e) => setPassword(e.target.value)}></input>
<input type="submit" value="Submit"></input>
</form>
<Button>Button</Button>
<Input type="text" />
</div>
);
}