﻿import React from 'react';

export const Option = ({ value, text }) => (
    <option  value={value}>{text}</option>
);
