<aside> π¨ Please make sure you READ and UNDERSTAND the menu structure below
</aside>
Always follow the naming convention that exists in the system,
/////////////////
//WRONG
/////////////////
FAQpage.jsx
/////////////////
//WRONG
/////////////////
faqpage.jsx
/////////////////
//WRONG
/////////////////
faqPage.jsx
/////////////////////////////////
/////////////////////////////////
//CORRECT
/////////////////////////////////
/////////////////////////////////
FAQPage.jsx
/////////////////
//WRONG
/////////////////
const CertContainer = 1
/////////////////
//WRONG
/////////////////
let certcontainer = 1
/////////////////////////////////
/////////////////////////////////
//CORRECT
/////////////////////////////////
/////////////////////////////////
const certContainer = 1
/////////////////////////////////
/////////////////////////////////
//CORRECT
/////////////////////////////////
/////////////////////////////////
let certContainer = 1
Please make sure while naming variables it makes sense
BAD EXAMPLE
CORRECT
const {assignId} = updateTaskInfo;
/////////////////
//WRONG
/////////////////
var a = 1;
/////////////////////////////////
/////////////////////////////////
//CORRECT
/////////////////////////////////
/////////////////////////////////
let a = 1;
//or
const a = 1;
use β??β syntax to flip conditions instead of β! ?:β