You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
489 B
20 lines
489 B
import './Css/Menus.css'
|
|
import Menu from './Menu'
|
|
|
|
const Items = [
|
|
{link: '/build/split-region', text: 'split region'},
|
|
{link: '/build/combined', text: 'combined'},
|
|
{link: '/build/na', text: 'na only'},
|
|
{link: '/build/apac', text: 'apac only'},
|
|
]
|
|
|
|
export default function Options(props: {current: string}) {
|
|
return (
|
|
<Menu
|
|
title='Options'
|
|
items={Items}
|
|
current={props.current}
|
|
align='left'
|
|
/>
|
|
)
|
|
} |