diff options
author | eug-vs <eug-vs@keemail.me> | 2020-03-21 15:32:02 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-03-21 15:32:02 +0300 |
commit | 2e9e20414c2ea49d7f40bcff09b89897e13fd2f4 (patch) | |
tree | 03e34134c9ba1b735de45196b9745d883c9c2168 /src/components/Loading | |
parent | 2ca9cbb36e25e280a1b26c9dc03eaea30e1dcc9d (diff) | |
download | chrono-cube-ui-2e9e20414c2ea49d7f40bcff09b89897e13fd2f4.tar.gz |
chore: migrate components to Typescript
Diffstat (limited to 'src/components/Loading')
-rw-r--r-- | src/components/Loading/Loading.tsx (renamed from src/components/Loading/Loading.js) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Loading/Loading.js b/src/components/Loading/Loading.tsx index e8793cc..a784be1 100644 --- a/src/components/Loading/Loading.js +++ b/src/components/Loading/Loading.tsx @@ -16,7 +16,7 @@ const useStyles = makeStyles(theme => ({ }, })); -const Loading = () => { +const Loading: React.FC = () => { const classes = useStyles(); return ( |