HOME


Mini Shell 1.0
DIR: /home/otwalrll/feedafricafarm.com/wp-content/themes/zakra/assets/js/meta/components/
Upload File :
Current File : /home/otwalrll/feedafricafarm.com/wp-content/themes/zakra/assets/js/meta/components/Collapse.tsx
import { Panel, PanelBody, PanelRow } from '@wordpress/components';
import React from 'react';

const Collapse = () => {
	return (
		<div>
			<Panel header="My panel">
				<React.Fragment key=".0">
					<PanelBody title="First section">
						<PanelRow>
							<div
								style={{
									background: '#ddd',
									height: 100,
									width: '100%',
								}}
							/>
						</PanelRow>
					</PanelBody>
					<PanelBody title="Second section">
						<PanelRow>
							<div
								style={{
									background: '#ddd',
									height: 100,
									width: '100%',
								}}
							/>
						</PanelRow>
					</PanelBody>
				</React.Fragment>
			</Panel>
		</div>
	);
};

export default Collapse;