mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-14 16:20:04 +00:00
14 lines
401 B
TypeScript
14 lines
401 B
TypeScript
import {JSX, ReactNode} from "react";
|
|
import * as Yup from 'yup';
|
|
|
|
export default function WizardStep({children, icon, validationSchema}: {
|
|
children: ReactNode,
|
|
icon: JSX.Element,
|
|
validationSchema?: Yup.Schema,
|
|
onSubmit?: (...values: any) => Promise<void>
|
|
}) {
|
|
return children;
|
|
}
|
|
|
|
//const WizardStep = ({children}: { children: Component }) => children;
|
|
//export default WizardStep;
|