import * as React from "react"; interface ComponentSelectorProps { children: React.ReactNode; } /** * Shows a (filtered) list of the current components on the page */ export const ComponentSelector: React.FC = ({ children, }) => { return
{children}
; }; export default ComponentSelector;