import React, { type JSX } from 'react'; type Props = { template: any; onChangeHandler: any; }; // const onChangeHandler = () => { // } export const TemplateTab = (props: Props): JSX.Element => { const { template, onChangeHandler } = props; return (
); };