Created
July 14, 2022 19:38
-
-
Save polluterofminds/7c50f6a9a4cb1239b64735b89ab664e0 to your computer and use it in GitHub Desktop.
Skeleton Blog Post Loading Screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
const Skeleton = () => { | |
return ( | |
<div className="card"> | |
<div className="header"> | |
<div className="img"></div> | |
<div className="details"> | |
<span className="name"></span> | |
<span className="about"></span> | |
</div> | |
</div> | |
<div className="description"> | |
<div className="line line-1"></div> | |
<div className="line line-2"></div> | |
<div className="line line-3"></div> | |
</div> | |
<div className="btns"> | |
<div className="btn btn-1"></div> | |
<div className="btn btn-2"></div> | |
</div> | |
</div> | |
); | |
}; | |
export default Skeleton; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment