10 lines
152 B
React
10 lines
152 B
React
|
import React from "react";
|
||
|
|
||
|
import LoadingStyled from "./Loading.style"
|
||
|
|
||
|
const Loading = () => {
|
||
|
return <LoadingStyled/>;
|
||
|
};
|
||
|
|
||
|
export default Loading;
|