import React, { FunctionComponent } from 'react'; const createCheckBoxElement = ({Name, Id}) => ({ __html: `` }); type IProps = { Name?: string; Id?: string; } const ChannelAccess: FunctionComponent = ({Name, Id}: IProps) => { return (
); }; export default ChannelAccess;