| 42 | }); |
| 43 | |
| 44 | const renderContent = variant => { |
| 45 | const node = currentLang === 'JS' ? buckets.JS[variant] : buckets.TS[variant]; |
| 46 | return node?.props?.children ? node : UNSUPPORTED; |
| 47 | }; |
| 48 | |
| 49 | const styleVariant = stylePreset === 'TW' ? 'tailwind' : 'css'; |
| 50 |