Member-only story
Create your own Social Links Tree with React from scratch.
4 min readMay 28, 2022
Prerequisite: Basic knowledge of Node.js with it installed on your machine
If you get lost at all feel free to reference the final product:
1. Set up a basic Node.js application
Start by creating a directory folder called social-links
cd into the social-links directory and run:
npm init -y
2. Create HTML and CSS files
Within the social-links Directory, create a folder named public with the file index.html.
In index.html create a create basic HTML with a div with an id of “app”. Here I am using the boilerplate from vscode.
I’ve also included a link to the style sheet styles.css and a file bundle.js that will be created later.