import React from 'react';

const Options: React.FC<{}> = () => {
  return <h1>Hello World!</h1>;
};

export default Options;
