1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Files
checktheroads-hyperglass/hyperglass/ui/components/QueryVrf.js

15 lines
333 B
JavaScript
Raw Normal View History

import * as React from "react";
2020-01-17 02:50:57 -07:00
import ChakraSelect from "~/components/ChakraSelect";
const QueryVrf = ({ vrfs, onChange, label }) => (
<ChakraSelect
size="lg"
options={vrfs}
name="query_vrf"
aria-label={label}
onChange={e => onChange({ field: "query_vrf", value: e.value })}
/>
);
2020-05-02 16:09:03 -07:00
export default QueryVrf;