0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-10 23:39:31 -05:00
verdaccio/website/src/components/Spinner.tsx
Behrang Yarahmadi 13310814da
#2606 add prettier plugin sort imports (#2607)
* #2606 add prettier plugin sort imprts

* #2606 update pnpm-lock.yaml

* #2606 update eslint rules

* #2606 fixes website directory formatting

Co-authored-by: Ayush Sharma <ayush.sharma@trivago.com>
2021-10-29 17:33:05 +02:00

7 lines
189 B
TypeScript

import React from 'react';
import styles from './Spinner.module.scss';
const Spinner = (): React.ReactElement => <div className={styles.loader}>Loading...</div>;
export default Spinner;