rexk/mocha-mix

View on GitHub
examples/react-tests/src/components/ProfilePic.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

export default (props) => (
  <img src={'https://graph.facebook.com/' + props.username + '/picture'} />
);