Handbook

Introduction

This is an introduction to the handbook. This is another line in the handbook.

Why

Because

But really?

Yep

Some notes will go here. More here too.

A list

  • Here's a list
  • Another item
  • and more

A link

My Website

More formatting

This is a snippet of code

This is bold

This is italic

This is bold and italic

Ordered list

  1. number one
  2. number two
  3. number three

Larger code block

const toggleNav = () => {
  setNavVisible(!navVisible);
  setSidebarWidth(navVisible ? 0 : 250);
};