mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
chrone: sperate client and server to different repos.
This commit is contained in:
16
src/components/SelectList.js
Normal file
16
src/components/SelectList.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import {Button} from '@blueprintjs/core';
|
||||
import {Select} from '@blueprintjs/select';
|
||||
|
||||
export default function SelectList(props) {
|
||||
const { buttonLabel, ...rest } = props;
|
||||
|
||||
return (
|
||||
<Select {...rest}>
|
||||
<Button
|
||||
fill={true}>
|
||||
{ buttonLabel }
|
||||
</Button>
|
||||
</Select>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user