- Dev build
- Local Server
- HMR = Hot Module Replacement
- File Watching Algorithm - written in C++
- Caching - Faster Builds
- Image Optimization
- Minification
- Bundling
- Compress
- Consistant Hashing
- Code Splittling
- Differential Bundling - support older browsers
- Diagnostics
- Error Handling
- HTTPS
- Tree Shaking - remove unused code
- Different dev and prod bundles
// React Element const TitleComponent = function () { return (
); };// React Functional Component & Component Composition const HeadingComponent = () => { return (
); };-
Header
- Logo
- Nav Items
-
Body
-
Search
-
RestaurantContainer
-
RestaurantCard
- Img
- Name of Res, Star Rating, cuisine, delery tie
- Img
-
Footer
-
Copyright
-
Links
-
Address
-
Contact