Debove Christopher
Debove Christopher
Inline components are not the same as inline component in React. Using an inline component is like calling the function directly (and can't use hook inside). True for inline handlers...
@dephiros > I think `useStylesScoped$` + css custom properties can fill a lot of css-in-js needs in a lightweight way. > I think this is similar to vue and svelte's...
I do have this issue too. Can I make a PR to fix this problem? This issue is due to `ignore` package. Due to how it works (non reincluded sub...
```ts type Flatten = A extends [infer H, ...infer R] ? [...(H extends unknown[] ? Flatten : [H]), ...Flatten] : []; ```
> It won't work with identical symbols such as 'AAA' Why not ? ```ts type StringToUnion = T extends `${infer C}${infer R}` ? C | StringToUnion : never; type union...
> Does anyone have an idea why the following solution does not pass the test cases? > > ``` > type AppendToObject = Omit & Record > ``` > >...