This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import anime from 'animejs'; | |
| function countup(el, target) { | |
| let data = { count: 0 }; | |
| anime({ | |
| targets: data, | |
| count: [0, target], | |
| duration: 2000, | |
| round: 1, | |
| delay: 200, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import React, { Component, PropTypes } from 'react'; | |
| import cx from 'classnames'; | |
| import Icon from 'components/Icon'; | |
| import sortBy from 'lodash/sortBy'; | |
| const TableRow = ({ row, columns = [] }) => { | |
| const styles = require('./Table.scss'); | |
| return ( | |
| <tr> | |
| {columns.map(({ key, renderer }) => { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | $grid-prefix: 'col' !default; | |
| $grid-columns: 12; | |
| $grid-gutter-width: 30px; | |
| @if ($grid-prefix != '') { | |
| $grid-prefix: "#{$grid-prefix}-"; | |
| } | |
| $breakpoints: ( | |
| "xs": "", | 
NewerOlder