diff --git a/commafeed-client/src/components/content/Content.tsx b/commafeed-client/src/components/content/Content.tsx index 80080cb9..82aff853 100644 --- a/commafeed-client/src/components/content/Content.tsx +++ b/commafeed-client/src/components/content/Content.tsx @@ -1,4 +1,4 @@ -import { createStyles, Text } from "@mantine/core" +import { createStyles, Text, TypographyStylesProvider } from "@mantine/core" export interface ContentProps { content: string @@ -26,5 +26,9 @@ const useStyles = createStyles(theme => ({ export function Content(props: ContentProps) { const { classes } = useStyles() - return + return ( + + + + ) }