takeru0001 5 лет назад
Родитель
Сommit
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 ();
+  }
+}