Latest.js
1 import React, { Component } from 'react' 2 import { styled, Heading, Box, Card } from 'fannypack' 3 4 const LatestBox = styled(Box)` 5 width: 50%; 6 margin: 0 auto; 7 ` 8 9 export default class Latest extends Component { 10 render() { 11 return ( 12 <LatestBox> 13 <Card title="Placeholder"> 14 This could hold most recently created diffs to browse or something. 15 </Card> 16 </LatestBox> 17 ) 18 } 19 }