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