neptune-web
feature(#72): improve the select item functionality and UI/UX
04e85f3
raw
history blame contribute delete
238 Bytes
import React from 'react';
import './Options.css';
interface Props {
title: string;
}
const Options: React.FC<Props> = ({ title }: Props) => {
return <div className="OptionsContainer">{title} Page</div>;
};
export default Options;