import * as React from "react"; interface PresetProps { /** * ...all of the section props */ sectionProps?: any; /** * TODO: Add a description */ children?: React.ReactNode; /** * Triggers when a preset is selected */ onChange?: React.ReactNode; } /** * This is an individual preset. It simply is a wrapper around a child component */ const Preset: React.FC = ({ children }) => { return
{children}
; }; export default Preset;