Dropdown container
Last updated: 2.0.0 (18/01/2024)
Usage
import { DropdownContainer } from "@valence-ui/core";
function MyComponent() {
return (
<DropdownContainer
options={["hello", "world"]}
// For brevity, most suggested props
// are not included.
>
// Your sub-component here.
// It should have little to no styling,
// as this is passed to the InputContainer.
</DropdownContainer>
)
}Props
Property
Type
Description
DropdownContainerEventProps
Property
Type
Description
Last updated