Javascript – Should I use Nextjs for writing just the FE code
If I want to write my FE in React for which already a BE exists, should I use Nextjs or since I am not planning to write BE, it's better to use plain and simple React
If I want to write my FE in React for which already a BE exists, should I use Nextjs or since I am not planning to write BE, it's better to use plain and simple React
As soon as the page loads I get the above error where do I get the authentication token. I was expecting that after the required installation and downgraded to node v 16 it would work normally. The react page loads…
please explain this problem; I wanna ".nav__btn" class display's be none where min-width: 768px; but it doesn't work --------------------Media Code------------------------ @media (min-width: 768px) { .nav__btn { display: none; } } -------------------------Styles Code----------------------- .nav__btn { width: 5.5rem; height: 5.5rem; display: flex;…
I am trying to print out a raising text segment in React, but every char gets printed twice. So hopefully someone has an idea. index.js import React from 'react'; import ReactDOM from 'react-dom/client'; import Test from './test.js'; function Root(){ return(…
I'm currently working on a project where I have a header that I'd like to position at the top of a container in my HTML/CSS layout. However, the header is currently appearing on the left side, and I want it…
I have a product list(without quantity) in json-server and fetch using react-redux and rendered in table. I also have a input field to get quantity from user to calculate the total by mutiplying product price(from json-server) with product quantity(from input…
I want to align my placeholder to the upper left corner, but no matter what I tried, I couldn't do it. Unfortunately, other sources didn't help me either. There is an answer to this question, but I couldn't find a…
I have two inputs in the html and in JavaScript, I am trying to write a function that does a check for both inputs to show the button. The user needs to enter 7 text and check the box for…
I am very new to Flutter development. I am trying to make a button that would be on the bottom right of the page, but it is not working. import 'package:flutter/material.dart'; class GoBack extends StatelessWidget { const GoBack({required this.onGoBack, super.key});…
I'm a beginner in JavaScript and today I have a question: How can I update or put a new object into an array of object? I need to check if the new object is totally new and then I push…