import React, { FunctionComponent } from 'react'; import globalize from '../../../scripts/globalize'; const createSelectElement = ({ className, label, option }) => ({ __html: `` }); type IProps = { className?: string; label?: string; parentalRatings: any } const SelectMaxParentalRating: FunctionComponent = ({ className, label, parentalRatings }: IProps) => { const renderOption = ratings => { let content = ''; for (const rating of ratings) { content += ``; } return content; }; return (
); }; export default SelectMaxParentalRating;