Tutorial URL: https://www.youtube.com/watch?v=hYv6BM2fWd8&t=804s
Tutorial description: In this tutorial, we build a personal portfolio website using React and Animate CSS.
Bootstrap: 5.2.3 React: 18.2.0
- Hard to view whether it was an h5 or h2 in the CSS. Until the instructor made the same mistake!
- Fork/download
- yarn install / npm install
- yarn start / npm start
- Visual Studio Code 2
- Functional components in all components.
import { Col } from 'react-bootstrap'; export const FunctionalComponent = ({ param1, param2 }) => { return ( <div> <h2>Hi, I am a Functional Component!</h2> </div> ) } // instead of class ClassComponent extends React.Component { render() { return <h2>Hi, I am a Class Component!</h2>; } }
- Single quotes on imports
import { Col } from 'react-bootstrap'; // instead of import { Col } from "react-bootstrap";
- How simple it is to import bootstrap and use the CSS library to instantly style apps without surprise, reward or hesitation.
- I didn't learn anything on this project. It was just a joy to build an app with React.