Architecture

Overview of the example project's architecture.

Overview

This page describes the overall architecture of the project.

Main components

  • Frontend — presentation layer description.
  • Backend — logic layer description.
  • Persistence — where data is stored.

Diagram

You can include diagrams, screenshots or code snippets:

export function hello(name: string) {
  return `Hello, ${name}`;
}

Key decisions

  1. We chose X because Y.
  2. We dropped Z in favor of W.