Skip to content
Sam Liu edited this page Mar 5, 2021 · 2 revisions

Overview

src/components/utils: holds all components shared between multiple pages.

Component Hierarchy

ProgressSpinner

  • Renders a progress spinner supported by react-bootstrap.

SearchBar

  • Takes a placeholder and aria label as props.
  • Renders a search bar with a clickable standard search icon.
type Props = {
  readonly placeholder: string;
  readonly ariaLabel: string;
};