Balance

 

 

 

 


                                                        
                                                        
                                                            import React, { StrictMode } from "react";
                                                        import { createRoot } from "react-dom/client";
                                                        import "./styles.css";
                                                        
                                                        import App from "./App";
                                                        
                                                        const root = createRoot(document.getElementById("root"));
                                                        root.render(
                                                          <StrictMode>
                                                            <App />
                                                          </StrictMode>
                                                        );
                                                        
                                                            

index.js


                                                        
                                                        
                                                            body {
                                                          font-family: sans-serif;
                                                          -webkit-font-smoothing: auto;
                                                          -moz-font-smoothing: auto;
                                                          -moz-osx-font-smoothing: grayscale;
                                                          font-smoothing: auto;
                                                          text-rendering: optimizeLegibility;
                                                          font-smooth: always;
                                                          -webkit-tap-highlight-color: transparent;
                                                          -webkit-touch-callout: none;
                                                        }
                                                        
                                                        h1 {
                                                          font-size: 1.5rem;
                                                        }
                                                        
                                                            

styles.css