File size: 489 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# Back Button
Simple back button, usually used in a HeaderCake to go back to the previous screen.
## Usage
```jsx
import BackButton from 'calypso/components/back-button';
function render() {
return <BackButton onClick={ myClickHandler } />;
}
```
### Props
| Name | Type | Default | Description |
| ----------- | ---------- | ------- | --------------------------------- |
| `onClick`\* | `function` | null | Called when the button is clicked |
|