appirio-tech-react-components-test10
Version:
Topcoder UI Kit library of components for our React apps.
17 lines (11 loc) • 335 B
JSX
import React from 'react'
import Avatar from './Avatar.jsx'
const AvatarExamples = () => (
<div className="AvatarExamples flex column middle center">
<h1>Default</h1>
<Avatar />
<h1>Url is provided</h1>
<Avatar avatarUrl="http://www.topcoder.com/i/m/cardiboy_big.jpg" />
</div>
)
export default AvatarExamples