Dashboard page (#150)

This commit is contained in:
Cássio Souza
2016-11-02 12:25:43 -02:00
committed by GitHub
parent 44bbb84d44
commit a6fc8506f5
8 changed files with 118 additions and 99 deletions

View File

@ -0,0 +1,13 @@
import React from 'react';
import UnpublishedEntriesPanel from './editorialWorkflow/UnpublishedEntriesPanel';
import styles from './breakpoints.css';
export default function DashboardPage() {
return (
<div className={styles.root}>
<h1>Dashboard</h1>
<UnpublishedEntriesPanel />
</div>
);
}