Skip to content

Style Guide

Gabe edited this page Jul 4, 2024 · 1 revision

The following style guide is recommended, but not required. Be nice to our eyes!

Quotes

Use single quotes in JS, and double quotes in JSX

const string = 'this is JS!';

const jsx = (
    <div className="jsx" />
);
Clone this wiki locally