@conveyal/commute
Version:
Commute analysis
16 lines (14 loc) • 348 B
JavaScript
import React from 'react'
import {Grid} from 'react-bootstrap'
export default function Footer () {
return (
<footer>
<Grid>
<p className='text-center text-muted'>
<span aria-label='Copyright' role='img'>©</span>
<a href='http://conveyal.com'>Conveyal</a>
</p>
</Grid>
</footer>
)
}