Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Fill, Slot, SlotFillProvider } from '@wordpress/components';
const SlotFillExample = () => (
<SlotFillProvider>
<h2>Profile</h2>
<p>
Name: <Slot bubblesVirtually name="name" />
</p>
<p>
Age: <Slot bubblesVirtually name="age" />
</p>
<Fill name="name">Grace</Fill>
<Fill name="age">33</Fill>
</SlotFillProvider>
);
export default SlotFillExample;