import React from 'react'; import './InitialComponent.scss'; import { connect } from 'react-redux'; import { Link } from 'react-router-dom'; const InitialComponent = ({ hello }: { hello: string }) => (
logo

This is the text from the store of redux: {hello}

Edit src/frontend/InitialComponent.jsx and save to reload.

Learn React Other Component
); const mapStateToProps = (state) => { return { hello: state.testReducer.hello }; }; export default connect(mapStateToProps)(InitialComponent);