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
@@ -0,0 +1,3 @@
const WizardStep = ({children}: { children: any }) => children;
export default WizardStep;