diff --git a/apps/comments-ui/src/components/NotSignedInBox.js b/apps/comments-ui/src/components/NotSignedInBox.js index 418d1f3c67..98995364a1 100644 --- a/apps/comments-ui/src/components/NotSignedInBox.js +++ b/apps/comments-ui/src/components/NotSignedInBox.js @@ -1,10 +1,29 @@ -function NotSignedInBox() { +import {useContext} from 'react'; +import AppContext from '../AppContext'; + +const NotSignedInBox = (props) => { + const {accentColor} = useContext(AppContext); + + const boxStyle = { + background: accentColor + }; + + const buttonStyle = { + color: accentColor + }; + return ( -
-

Want to join the discussion?

- Sign in to comment +
+

Want to join the discussion?

+ + Subscribe now + +

+ Already have an account? + Sign in +

); } - + export default NotSignedInBox;