mirror of
https://github.com/status-im/liquid-funding.git
synced 2025-01-23 09:50:11 +00:00
13 lines
331 B
JavaScript
13 lines
331 B
JavaScript
import React from 'react'
|
|
import PledgeAllocationsChart from './dashboard/PledgeAllocationsChart'
|
|
import FundingSummary from './dashboard/FundingSummary'
|
|
|
|
const Dashboard = () => (
|
|
<div>
|
|
<FundingSummary title="Funding Summary" />
|
|
<PledgeAllocationsChart title="Pledge Allocations" />
|
|
</div>
|
|
)
|
|
|
|
export default Dashboard
|