From ab4fbc1cd3d5746416483a630ada32a6f488aa61 Mon Sep 17 00:00:00 2001 From: Philzen Date: Thu, 28 Jul 2022 15:48:42 +0200 Subject: [PATCH] Tutorial 6.2: Add generics type hint to CellSuccessProps (#6042) Co-authored-by: Daniel Choudhury --- docs/docs/tutorial/chapter6/multiple-comments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorial/chapter6/multiple-comments.md b/docs/docs/tutorial/chapter6/multiple-comments.md index f26ad5bf0708..a793a221d17f 100644 --- a/docs/docs/tutorial/chapter6/multiple-comments.md +++ b/docs/docs/tutorial/chapter6/multiple-comments.md @@ -118,7 +118,7 @@ export const Failure = ({ error }: CellFailureProps) => (
Error: {error.message}
) -export const Success = ({ comments }: CellSuccessProps) => { +export const Success = ({ comments }: CellSuccessProps) => { return ( // highlight-start <>