Is it possible to build a component so I can pass the content of the editor as child content? Something like this:
<MonacoEditor2>
// Hello World! program
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello World!");
}
}
}
</MonacoEditor2>
Is it possible to build a component so I can pass the content of the editor as child content? Something like this: