create initial studylist placeholder files

This commit is contained in:
Rodrigo Antinarelli 2020-03-05 18:11:25 -03:00 committed by James A. Petts
parent ac1088e1e3
commit 29bf8ed464
7 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import React from 'react';
import Header from './components/Header';
import StudyListFilter from './components/StudyListFilter';
import StudyListTable from './components/StudyListTable';
import StudyListPagination from './components/StudyListPagination';
const StudyList = () => {
return (
<div>
<Header />
<StudyListFilter />
<StudyListTable />
<StudyListPagination />
</div>
);
};
export default StudyList;

View File

@ -0,0 +1,10 @@
import React from 'react';
/**
* THIS FILE LOCATION IS TEMPORARY AND SHOULD NOT BE PLACED HERE
*/
const Header = () => {
return <div>{`<- HEADER CONTENT ->`}</div>;
};
export default Header;

View File

@ -0,0 +1,7 @@
import React from 'react';
const StudyListFilter = () => {
return <div>{`<- STUDYLIST FILTER CONTENT ->`}</div>;
};
export default StudyListFilter;

View File

@ -0,0 +1,7 @@
import React from 'react';
const StudyListPagination = () => {
return <div>{`<- PAGINATION CONTENT ->`}</div>;
};
export default StudyListPagination;

View File

@ -0,0 +1,7 @@
import React from 'react';
const StudyListTable = () => {
return <div>{`<- STUDYLIST TABLE CONTENT ->`}</div>;
};
export default StudyListTable;

View File

@ -0,0 +1 @@
export { default as StudyList } from './StudyList';

View File

@ -0,0 +1,8 @@
import React from 'react';
import StudyList from '../components/StudyList/StudyList';
const ConnectedStudyList = () => {
return <StudyList />;
};
export default ConnectedStudyList;