Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

FullPageLoader.js 341B

12345678910111213
  1. import React from "react";
  2. import { ReactComponent as Logo } from "../../assets/images/svg/big-logo-vertical.svg";
  3. import { FullPageLoaderContainer } from "./FullPageLoader.styled";
  4. const FullPageLoader = () => {
  5. return (
  6. <FullPageLoaderContainer>
  7. <Logo />
  8. </FullPageLoaderContainer>
  9. );
  10. };
  11. export default FullPageLoader;