packages/core: removed entity-related APIs

This commit is contained in:
Patrik Oldsberg
2020-03-10 15:54:04 +01:00
parent 12f607c6f0
commit 54214323c6
26 changed files with 12 additions and 705 deletions
@@ -1,9 +1,8 @@
import React, { FC } from 'react';
import { Typography, Grid } from '@material-ui/core';
import { Typography, Link, Grid } from '@material-ui/core';
import HomePageTimer from '../HomepageTimer';
import {
Content,
EntityLink,
InfoCard,
Header,
Page,
@@ -27,9 +26,9 @@ const HomePage: FC<{}> = () => {
return {
id,
entity: (
<EntityLink kind={kind} id={id}>
<Link href={`entity/${kind}/${id}`}>
<Typography color="primary">{id}</Typography>
</EntityLink>
</Link>
),
kind: <Typography>{kind}</Typography>,
};