change: add loading state to project board

This commit is contained in:
Jordan Knott
2020-07-16 21:14:26 -05:00
parent a90ace7a06
commit 45a92636cb
5 changed files with 207 additions and 46 deletions

View File

@@ -39,6 +39,7 @@ import Input from 'shared/components/Input';
import Member from 'shared/components/Member';
import Board from './Board';
import Details from './Details';
import EmptyBoard from 'shared/components/EmptyBoard';
const CARD_LABEL_VARIANT_STORAGE_KEY = 'card_label_variant';
@@ -202,6 +203,7 @@ const Project = () => {
return (
<>
<GlobalTopNavbar onSaveProjectName={projectName => {}} name="" projectID={null} />
<Board loading />
</>
);
}