From f36e27104101119ec49d7839c632a86d299d70bf Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Mon, 28 Nov 2022 22:20:43 +0100 Subject: [PATCH] Update src/components/MDXComponents.tsx Co-authored-by: Corwin Smith --- src/components/MDXComponents.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/MDXComponents.tsx b/src/components/MDXComponents.tsx index 02b29f38a4..54c03220f8 100644 --- a/src/components/MDXComponents.tsx +++ b/src/components/MDXComponents.tsx @@ -80,7 +80,14 @@ const MDXComponents = { ), // code - code: ({ children, ...props }: any) => {children} + code: ({ children, ...props }: any) => {children}, + // list + ul: ({children}: any) => { + return {children} + }, + li: ({ children }: any) => { + return {children} + } }; export default MDXComponents;