React-for-the-Visual-Learner
React-for-the-Visual-Learner copied to clipboard
Windows 10 and no rendering?
I have followed all of the steps. I have tested with 'ArticleCover' and got that to render in the browser. But when putting the whole project together I do not get anything rendered in the browser.
I have also attempted doing 'CallToAction' and this does not render either. Any ideas why this is occurring?
I am on Windows 10. Some of the packages I downloaded are updated versions since the original project was created.
Do you receive any sort of errors within the console? One thing I remember having to do to get everything displayed was to export in this way:
export default Branding;
instead of:
module.exports = Branding;
For example for the Branding component and so on and so forth for the other components at the bottom of each component file.