Summary: adding documentation for more of our UI components. Deleted some unused components, which were not working anyways. Reviewed By: jknoxville Differential Revision: D12896109 fbshipit-source-id: 959c7864240883869ad67283f80a3c189b94bf00
36 lines
887 B
JavaScript
36 lines
887 B
JavaScript
/**
|
|
* Copyright 2018-present Facebook.
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
* @format
|
|
*/
|
|
|
|
import ButtonGroup from './ButtonGroup.js';
|
|
import Button from './Button.js';
|
|
|
|
/**
|
|
* Button group to navigate back and forth.
|
|
*/
|
|
export default function ButtonNavigationGroup(props: {|
|
|
/** Back button is enabled */
|
|
canGoBack: boolean,
|
|
/** Forwards button is enabled */
|
|
canGoForward: boolean,
|
|
/** Callback when back button is clicked */
|
|
onBack: () => void,
|
|
/** Callback when forwards button is clicked */
|
|
onForward: () => void,
|
|
|}) {
|
|
return (
|
|
<ButtonGroup>
|
|
<Button disabled={!props.canGoBack} onClick={props.onBack}>
|
|
{'<'}
|
|
</Button>
|
|
|
|
<Button disabled={!props.canGoForward} onClick={props.onForward}>
|
|
{'<'}
|
|
</Button>
|
|
</ButtonGroup>
|
|
);
|
|
}
|