I have a working project on AngularJS and I have a problem rendering. I need to render many elements (1000+) in one page and very fast. To solve this problem, I decided to use ReactJS. But... I have these elements
<tr data-ng-repeat="user in users>
<td><span data-my-directive="user.data"></span></td>
</tr>
How can I render this on ReactJS. How can I run my angular directive? I have many Angular directives, how can I make angular friends with ReactJS?
Thanks