UNPKG

greybel-js

Version:

Transpiler/Interpreter for GreyScript. (GreyHack)

33 lines 974 B
import React from 'react'; import { createRoot } from 'react-dom/client'; import App from './web/app.js'; const root = createRoot(document.querySelector('#container')); root.render(React.createElement(App, { externalLinks: [ { label: 'GreyScript Documentation', href: 'https://documentation.greyscript.org' }, { label: 'Greybel VS', href: 'https://github.com/ayecue/greybel-vs' }, { label: 'GreyScript Meta', href: 'https://github.com/ayecue/greyscript-meta' }, { label: 'greyrepo.xyz', href: 'https://www.greyrepo.xyz' }, { label: 'Grey Hack TUTORIALS', href: 'https://www.youtube.com/@Greyhacktutorials' }, { label: 'Grey Hack Gaming', href: 'https://www.youtube.com/@greyhackgaming' } ] })); //# sourceMappingURL=web.js.map