liquid-funding/app/components/Dashboard.jsx

13 lines
331 B
React
Raw Normal View History

2018-12-16 17:59:33 +00:00
import React from 'react'
import PledgeAllocationsChart from './dashboard/PledgeAllocationsChart'
import FundingSummary from './dashboard/FundingSummary'
2018-12-16 17:59:33 +00:00
const Dashboard = () => (
<div>
<FundingSummary title="Funding Summary" />
<PledgeAllocationsChart title="Pledge Allocations" />
2018-12-16 17:59:33 +00:00
</div>
)
export default Dashboard