takeru0001 пре 5 година
родитељ
комит
35e6317979
1 измењених фајлова са 20 додато и 0 уклоњено
  1. 20 0
      src/client/js/components/LikeCount.jsx

+ 20 - 0
src/client/js/components/LikeCount.jsx

@@ -0,0 +1,20 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+class LikeCount extends React.Component {
+
+  constructor(props) {
+    super(props);
+
+    this.state = {
+    };
+  }
+
+  appContainer.apiv3.get('/page/likeCount', { pageId });
+
+
+  render() {
+
+    return ();
+  }
+}