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