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:
TomNUSDS 2021-08-10 15:36:09 -07:00 committed by GitHub
commit ec4344676d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 325 additions and 4 deletions

View file

@ -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>
);
};