create initial studylist placeholder files
This commit is contained in:
parent
ac1088e1e3
commit
29bf8ed464
18
platform/viewer/src/components/StudyList/StudyList.js
Normal file
18
platform/viewer/src/components/StudyList/StudyList.js
Normal 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;
|
||||
@ -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;
|
||||
@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
const StudyListFilter = () => {
|
||||
return <div>{`<- STUDYLIST FILTER CONTENT ->`}</div>;
|
||||
};
|
||||
|
||||
export default StudyListFilter;
|
||||
@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
const StudyListPagination = () => {
|
||||
return <div>{`<- PAGINATION CONTENT ->`}</div>;
|
||||
};
|
||||
|
||||
export default StudyListPagination;
|
||||
@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
const StudyListTable = () => {
|
||||
return <div>{`<- STUDYLIST TABLE CONTENT ->`}</div>;
|
||||
};
|
||||
|
||||
export default StudyListTable;
|
||||
1
platform/viewer/src/components/StudyList/index.js
Normal file
1
platform/viewer/src/components/StudyList/index.js
Normal file
@ -0,0 +1 @@
|
||||
export { default as StudyList } from './StudyList';
|
||||
@ -0,0 +1,8 @@
|
||||
import React from 'react';
|
||||
import StudyList from '../components/StudyList/StudyList';
|
||||
|
||||
const ConnectedStudyList = () => {
|
||||
return <StudyList />;
|
||||
};
|
||||
|
||||
export default ConnectedStudyList;
|
||||
Loading…
Reference in New Issue
Block a user