11 lines
186 B
React
11 lines
186 B
React
|
import React from 'react'
|
||
|
import InfoCard from './dashboard/InfoCard'
|
||
|
|
||
|
const Dashboard = () => (
|
||
|
<div>
|
||
|
<InfoCard title="Pledge Allocations" />
|
||
|
</div>
|
||
|
)
|
||
|
|
||
|
export default Dashboard
|