mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-04 05:34:18 -07:00
Add Cumulative Score "steps" section to methodology page (#489)
* Step progress list * Layout mostly done. Need to do intl() conversion but it's easier to understand the layout like this. Will do intl in a different PR * fix: `em` to `rem` * Add basic snapshot unit test
This commit is contained in:
parent
3d8dbb293c
commit
ec4344676d
5 changed files with 325 additions and 4 deletions
|
@ -5,6 +5,7 @@ import AlertWrapper from '../components/AlertWrapper';
|
|||
import DatasetContainer from '../components/DatasetContainer';
|
||||
import J40MainGridContainer from '../components/J40MainGridContainer';
|
||||
import Layout from '../components/layout';
|
||||
import ScoreStepsList from '../components/scoreStepsList';
|
||||
|
||||
interface MethodPageProps {
|
||||
location: Location;
|
||||
|
@ -61,6 +62,11 @@ const IndexPage = ({location}: MethodPageProps) => {
|
|||
</Grid>
|
||||
</J40MainGridContainer>
|
||||
|
||||
<J40MainGridContainer>
|
||||
<Grid row><Grid col>
|
||||
<ScoreStepsList/>
|
||||
</Grid></Grid>
|
||||
</J40MainGridContainer>
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue