Skip to content

Commit

Permalink
feat(Home): mention React version
Browse files Browse the repository at this point in the history
  • Loading branch information
topheman committed Oct 26, 2018
1 parent ddc51a2 commit ca23a58
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/containers/HomeContainer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { Fragment } from "react";
import React, { Fragment, version as reactVersion } from "react";
import { Link } from "@reach/router";
import PropTypes from "prop-types";
import { withStyles } from "@material-ui/core";
Expand Down Expand Up @@ -90,6 +90,13 @@ const HomeContainer = ({ classes }) => (
<SuspenseExplanation />
<Card className={classes.card}>
<CardContent className={classes.cardContent}>
<p>
Now using{" "}
<strong>
react@
{reactVersion}
</strong>
</p>
<p>
<strong>react@16.6.0 update</strong>
</p>
Expand Down

0 comments on commit ca23a58

Please sign in to comment.