-
Notifications
You must be signed in to change notification settings - Fork 3
.utils
Sam Liu edited this page Mar 5, 2021
·
2 revisions
src/components/utils
: holds all components shared between multiple pages.
- Renders a progress spinner supported by
react-bootstrap
.
- 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;
};