import React from
'react'
import { Placeholder } from
'semantic-ui-react'
const styleLink = document.createElement(
"link"
);
styleLink.rel =
"stylesheet"
;
styleLink.href =
document.head.appendChild(styleLink);
const App = () => (
<div>
<br />
<Placeholder inverted fluid>
<Placeholder.Header image>
<Placeholder.Line length=
'very short'
/>
<Placeholder.Line length=
'very short'
/>
<Placeholder.Line length=
'very short'
/>
</Placeholder.Header>
<Placeholder.Paragraph>
<Placeholder.Line length=
'very short'
/>
<Placeholder.Line length=
'very short'
/>
<Placeholder.Line length=
'very short'
/>
</Placeholder.Paragraph>
<Placeholder.Header image>
<Placeholder.Line length=
'very short'
/>
<Placeholder.Line length=
'very short'
/>
<Placeholder.Line length=
'very short'
/>
</Placeholder.Header>
</Placeholder>
</div>
)
export
default
App