Fix Multi-Step-Wizard

Implement generic Wizard component for future use in Gameyfin
This commit is contained in:
grimsi
2024-03-16 14:48:06 +01:00
parent 0b696e4766
commit 4ad0914b17
6 changed files with 185 additions and 150 deletions
+1 -18
View File
@@ -30,21 +30,4 @@ const Input = ({label, ...props}) => {
);
}
export default Input;
/*
<Input
onChange={(event) => {
setUsername(event.target.value);
}}
id="username"
type="text"
autoComplete="username"
placeholder=""
size="lg"
className=" !border-t-blue-gray-200 focus:!border-t-gray-900"
labelProps={{
className: "before:content-none after:content-none",
}}
crossOrigin="" //TODO: see https://github.com/creativetimofficial/material-tailwind/issues/427
/>
*/
export default Input;