Download the package form Robo3t or using wget
wget https://download.robomongo.org/1.2.1/linux/robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz
tar -xvzf robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz
wget
wget https://download.robomongo.org/1.2.1/linux/robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz
tar -xvzf robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz
// struggled to figure this out, hopefully this helps you! | |
// component | |
import { Select, MenuItem, FormControl } from '@material-ui/core' | |
const SelectRamen = () => ( | |
<FormControl id="select-ramen"> | |
<InputLabel>Pick Your Ramen</InputLabel> | |
<Select> | |
{options.map((opt, i) => <MenuItem key={i} value={opt}>{opt.name}</MenuItem>)} |