mirror of
https://github.com/gre/gl-react.git
synced 2026-01-18 16:16:59 +00:00
9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
const React = require("react");
|
|
const AdvancedEffects = require("./src");
|
|
|
|
document.body.style.margin = "0";
|
|
document.body.style.color = "#fff";
|
|
document.body.style.backgroundColor = "#000";
|
|
|
|
React.render(<AdvancedEffects width={400} height={700} />, document.body);
|