(arr: ReadonlyArray<T>)
| 51 | |
| 52 | // @ts-expect-error - TS2802 - Type 'Set<T>' can only be iterated through when using the '--downlevelIteration' flag or with a '--target' of 'es2015' or higher. |
| 53 | const dedupeArray = <T>(arr: ReadonlyArray<T>): ReadonlyArray<T> => [...new Set(arr)]; |
| 54 | |
| 55 | const handleCodeSandbox = async ({ code, title }: { code: string; title: string }) => { |
| 56 | const gestaltComponents = Object.keys(gestalt); |