mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-10 23:39:31 -05:00
13310814da
* #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>
7 lines
189 B
TypeScript
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;
|