import React from 'react';
import { Typography, Row, Col } from 'antd';
import { useEntityRegistry } from '../useEntityRegistry';
import { BrowseEntityCard } from '../search/BrowseEntityCard';
const styles = {
title: {
margin: '0px 0px 0px 120px',
fontSize: 32,
},
entityGrid: {
padding: '40px 100px',
},
};
export const HomePageBody = () => {
const entityRegistry = useEntityRegistry();
return (
<>
Explore your data
{entityRegistry.getBrowseEntityTypes().map((entityType) => (
))}
>
);
};