File size: 265 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { Card } from '@automattic/components';
import AllSites from 'calypso/blocks/all-sites';
const AllSitesExample = () => (
<Card style={ { padding: 0 } }>
<AllSites />
</Card>
);
AllSitesExample.displayName = 'AllSites';
export default AllSitesExample;
|