📄️ Stylesheet
Learn how to add a stylesheet to your Create React App project. Style your components and make them visually appealing with CSS.
📄️ CSS Modules Stylesheet
Learn how to add a CSS Modules stylesheet to your Create React App project. Use scoped styling and prevent naming clashes by automatically generating unique class names for your styles.
📄️ Sass Stylesheet
Learn how to add a Sass stylesheet to your Create React App project. Use the power of Sass to write cleaner and more maintainable styles for your React components.
📄️ CSS Reset
Learn how to add a CSS reset to your Create React App project using PostCSS Normalize. Ensure consistent styling across different browsers by providing a solid foundation for your React components.
📄️ Post Processing CSS
Learn how to leverage post-processing CSS in Create React App to enhance your stylesheets and ensure cross-browser compatibility. Automatically add vendor prefixes, embrace new CSS features, and more.
📄️ Images Fonts and Files
Learn how to work with images, fonts, and files in a React application. Manage and utilize these assets effectively to create visually appealing and interactive web experiences.
📄️ Loading GraphQL Files
Learn how to load GraphQL files in a Create React App project. Use Apollo Client or GraphQL Code Generator to fetch data from your GraphQL server and simplify your React application development.
📄️ Using the Public Folder
Learn how to use the public folder in a Create React App project. Customize the HTML file and add assets directly to the public folder to enhance your React application.
📄️ Code Splitting
Learn how to optimize your React application's performance by code splitting. Split your code into smaller chunks and load them only when needed, resulting in faster load times and improved user experiences.