import React, { FunctionComponent } from 'react'; import globalize from '../../../scripts/globalize'; const createSelectElement = ({ className, id, label }: { className?: string, id?: string, label: string }) => ({ __html: `` }); type IProps = { className?: string; id?: string; label?: string } const SelectSyncPlayAccessElement: FunctionComponent = ({ className, id, label }: IProps) => { return (
); }; export default SelectSyncPlayAccessElement;