Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mo4islona/material-go-playground

React Material UI component for Golang playground
https://github.com/mo4islona/material-go-playground

golang-playground material-ui widget

Last synced: 8 days ago
JSON representation

React Material UI component for Golang playground

Awesome Lists containing this project

README

        

# React Material UI Component for Golang playground

[Website](http://mo4islona.github.io/material-go-playground/)

## Install
```shell
yarn add material-go-playground
```

## Usage

```jsx
import React from "react";
import { render } from "react-dom";
import GoPlayground from "material-go-playground";

const code = `package main

import (
"fmt"
)

func main() {
fmt.Println("Hello, playground")
}`;

function App() {
return
}

render(
,
document.getElementById("root"),
);
```