From 4ae3129d30197662b6b7e075ed05e361125ca25c Mon Sep 17 00:00:00 2001 From: Trezy Date: Mon, 29 Jul 2024 22:46:04 -0500 Subject: [PATCH] fix: ensure `` `children` is optional --- src/typedefs/ApplicationProps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/typedefs/ApplicationProps.ts b/src/typedefs/ApplicationProps.ts index 399e3cd4..91973026 100644 --- a/src/typedefs/ApplicationProps.ts +++ b/src/typedefs/ApplicationProps.ts @@ -20,7 +20,7 @@ export interface BaseApplicationProps className?: string /** @description Child components. */ - children: PixiReactChildNode; + children?: PixiReactChildNode; /** @description The default style to be applied to text nodes. */ defaultTextStyle?: TextStyle | TextStyleOptions,