chore(ui): fade grid placeholder on first render

This commit is contained in:
Łukasz Mierzwa
2019-10-14 21:33:26 +01:00
parent 319dc73562
commit 540d6c4264
+5 -1
View File
@@ -3,11 +3,15 @@ import React from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faMugHot } from "@fortawesome/free-solid-svg-icons/faMugHot";
import { MountFade } from "Components/Animations/MountFade";
import "./index.scss";
const EmptyGrid = () => (
<h1 className="display-1 text-secondary screen-center">
<FontAwesomeIcon icon={faMugHot} style={{ fontSize: "14rem" }} />
<MountFade in={true}>
<FontAwesomeIcon icon={faMugHot} style={{ fontSize: "14rem" }} />
</MountFade>
</h1>
);