Tsubasa
Tsubasa
DDeno
Created by Tsubasa on 3/24/2025 in #help
JSX config not working properly, I keep getting children props error in all my components
Hey Marvinh, are you aware of any quick fix/hack for this till it gets resolved?
15 replies
DDeno
Created by Tsubasa on 3/24/2025 in #help
JSX config not working properly, I keep getting children props error in all my components
Hey @marvinh. I wasn't sure what format/template to follow or what details to add for filing issue so I just added as much info as possible, possibly most of it isn't needed but the default template just wanted deno version which idt is enough? lol
15 replies
DDeno
Created by Tsubasa on 3/24/2025 in #help
JSX config not working properly, I keep getting children props error in all my components
I'll file the issue tomorrow, will just head to bed now
15 replies
DDeno
Created by Tsubasa on 3/24/2025 in #help
JSX config not working properly, I keep getting children props error in all my components
yeah ofc
15 replies
DDeno
Created by Tsubasa on 3/24/2025 in #help
JSX config not working properly, I keep getting children props error in all my components
I am assuming it's related to some package/types package or config issue
15 replies
DDeno
Created by Tsubasa on 3/24/2025 in #help
JSX config not working properly, I keep getting children props error in all my components
It is a MUI component, and I am not getting the error just in Fade component, but in Grow and Zoom etc. as well,
15 replies
DDeno
Created by Tsubasa on 3/24/2025 in #help
JSX config not working properly, I keep getting children props error in all my components
<Fade in={true} timeout={1000}>
<Card sx={{ width: '100%', p: 3 }}>
<CardContent sx={{ textAlign: 'center' }}>
<Grow in={true} timeout={1500}>
<Typography
variant='h4'
color='primary'
gutterBottom
>
Quiz Champion
</Typography>
</Grow>
...
</Fade>
<Fade in={true} timeout={1000}>
<Card sx={{ width: '100%', p: 3 }}>
<CardContent sx={{ textAlign: 'center' }}>
<Grow in={true} timeout={1500}>
<Typography
variant='h4'
color='primary'
gutterBottom
>
Quiz Champion
</Typography>
</Grow>
...
</Fade>
export interface FadeProps extends Omit<TransitionProps, 'children'> {
/**
* Perform the enter transition when it first mounts if `in` is also `true`.
* Set this to `false` to disable this behavior.
* @default true
*/
appear?: boolean;
/**
* A single child content element.
*/
children: React.ReactElement<unknown, any>;
/**
* The transition timing function.
* You may specify a single easing or a object containing enter and exit values.
*/
easing?: TransitionProps['easing'];
/**
* If `true`, the component will transition in.
*/
in?: boolean;
ref?: React.Ref<unknown>;
/**
* The duration for the transition, in milliseconds.
* You may specify a single timeout for all transitions, or individually with an object.
* @default {
* enter: theme.transitions.duration.enteringScreen,
* exit: theme.transitions.duration.leavingScreen,
* }
*/
timeout?: TransitionProps['timeout'];
export interface FadeProps extends Omit<TransitionProps, 'children'> {
/**
* Perform the enter transition when it first mounts if `in` is also `true`.
* Set this to `false` to disable this behavior.
* @default true
*/
appear?: boolean;
/**
* A single child content element.
*/
children: React.ReactElement<unknown, any>;
/**
* The transition timing function.
* You may specify a single easing or a object containing enter and exit values.
*/
easing?: TransitionProps['easing'];
/**
* If `true`, the component will transition in.
*/
in?: boolean;
ref?: React.Ref<unknown>;
/**
* The duration for the transition, in milliseconds.
* You may specify a single timeout for all transitions, or individually with an object.
* @default {
* enter: theme.transitions.duration.enteringScreen,
* exit: theme.transitions.duration.leavingScreen,
* }
*/
timeout?: TransitionProps['timeout'];
15 replies
DDeno
Created by Tsubasa on 3/24/2025 in #help
JSX config not working properly, I keep getting children props error in all my components
I was messing around with all sorts of combinations in hopes of something working honestly, thanks for telling me this
15 replies