You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Full-featured Monaco editor with syntax highlighting"
27
+
/>
28
+
29
+
<InteractiveDemo
30
+
schema={{
31
+
type: "code-editor",
32
+
value: "def calculate_fibonacci(n):\n if n <= 1:\n return n\n return calculate_fibonacci(n-1) + calculate_fibonacci(n-2)\n\n# Calculate first 10 Fibonacci numbers\nfor i in range(10):\n print(f'F({i}) = {calculate_fibonacci(i)}')",
33
+
language: "python",
34
+
theme: "vs-dark",
35
+
height: "300px"
36
+
}}
37
+
title="Python Editor"
38
+
description="Support for 100+ programming languages"
0 commit comments