13 lines
222 B
Markdown
13 lines
222 B
Markdown
|
```jsx
|
||
|
import { EmptyContent } from '@woocommerce/components';
|
||
|
|
||
|
const MyEmptyContent = () => (
|
||
|
<EmptyContent
|
||
|
title="Nothing here"
|
||
|
message="Some descriptive text"
|
||
|
actionLabel="Reload page"
|
||
|
actionURL="#"
|
||
|
/>
|
||
|
);
|
||
|
```
|