Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mo4islona/material-go-playground
- Owner: mo4islona
- Created: 2019-08-14T17:02:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:05:02.000Z (almost 2 years ago)
- Last Synced: 2024-10-13T03:11:01.019Z (about 1 month ago)
- Topics: golang-playground, material-ui, widget
- Language: JavaScript
- Homepage:
- Size: 3.27 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
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"),
);
```