import { Modal } from "react-bootstrap"; function FormatGuideModal(props: { show: boolean, onHide: () => void, }) { return ( 📖 Formatting Guide

You can format the text of the book using markdown. If you don't know how to use markdown you only need to know two things:

  1. To make a chapter heading put a # in front of the chapter title.
  2. Leave an empty line between every paragraph.

For example:

); } export default FormatGuideModal;