import React, { useState } from 'react' import { Select } from 'aws-northstar/components' type Option = { label: string value: string } type SelectBoxProps = { options: Option[] value?: string onChange: (option: string) => void } const SelectBox: React.FC = ({ options, value, onChange }: SelectBoxProps) => { const [selectedOption, setSeletedOption] = useState