index.js 548 B

12345678910111213
  1. import React from 'react';
  2. import store from './../../../state';
  3. export default props => (
  4. <div className="footer">
  5. <p className="footer__us">
  6. TOP-company
  7. "<span className="footer__us us__inline--red">T</span>est.<span className="footer__us us__inline--green">i</span>o"
  8. </p>
  9. <p className="footer__copyright">&copy; 2018, 'Test.io', all right reserved</p>
  10. <button style={{"z-index": 4000, "color": "red"}} onClick={() => console.log(store.getState())}>Redux - State</button>
  11. </div>
  12. )