File size: 347 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { Snackbar } from '@wordpress/components';
const SnackbarExample = () => {
const content = 'Use Snackbars with an action link to an external page.';
const actions = [
{
label: 'Open WP.org',
url: 'https://wordpress.org',
},
];
return <Snackbar actions={ actions }>{ content }</Snackbar>;
};
export default SnackbarExample;
|