summaryrefslogtreecommitdiff
path: root/src/components/Loading.js
blob: 1b8d373e651698aa1e82738ac4bfe2600638b5cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';

import style from './Loading.module.scss';

const Loading = () => {
  return (
    <div className={style.loading}>
      <div className={style.left + ' ' + style.circle} />
      <div className={style.right + ' ' + style.circle} />
    </div>
  );
};

export default Loading;