import * as React from "react"; import { Grid } from "@material-ui/core"; import { EditorMode } from "@sc/modules/v2/Editor/types"; interface StepperProps { mode?: EditorMode; children?: React.ReactNode; style?: any; } export const Stepper: React.FC = ({ children, style }) => { return ( {children} ); }; export default Stepper;