When using this template, make sure you have your IDE Prettier and ESLint settings set in the following way:
I would also recommend creating these File Templates for faster component and page creation:
export default function ${NAME}() {
return (
<>
</>
);
}
React Page
export default function ${NAME}() {
return (
<>
</>
);
}
Styled components file:
import styled from "styled-components";
export const TestContainer = styled.div`
display: flex;
`;