Open Suvink opened 1 year ago
Currently, in the generation template, all the functions are rendered in function AboutUsPage() {} format. Change this to arrow functions: const AboutUsPage = () => {} to preserve the consistency.
function AboutUsPage() {}
const AboutUsPage = () => {}
Can I work on this?
Hey there! Sure please proceed.
Currently, in the generation template, all the functions are rendered in
function AboutUsPage() {}
format. Change this to arrow functions:const AboutUsPage = () => {}
to preserve the consistency.