mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-09-29 17:49:08 +02:00
11 lines
261 B
JavaScript
11 lines
261 B
JavaScript
module.exports = {
|
|
componentDidMount() {
|
|
if (typeof document !== "undefined") {
|
|
var script = document.createElement("script");
|
|
script.src = "lib/site/disqus.js";
|
|
script.async = true;
|
|
document.head.appendChild(script);
|
|
}
|
|
}
|
|
};
|