Skip to content

Instantly share code, notes, and snippets.

@kylemocode
Created April 14, 2020 08:16
Show Gist options
  • Save kylemocode/a8fc5027495b78589977669a06b0823f to your computer and use it in GitHub Desktop.
Save kylemocode/a8fc5027495b78589977669a06b0823f to your computer and use it in GitHub Desktop.
import styled from 'styled-components';
export const S = {
PlaceHolderContainer: styled.div`
width: 100%;
min-height: 120px;
padding: 5px 10px;
display: flex;
flex-direction: column;
align-items: flex-start;
margin-top: 20px;
`,
}
// 使用 styled 元件
const LoadingPlaceHolder: React.FC = () => {
return (
<S.PlaceHolderContainer>
<S.TitlePlaceHolder />
<S.ContentPlaceHolder />
<S.ContentPlaceHolder />
</S.PlaceHolderContainer>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment