semantic-ui-react#Transition JavaScript Examples
The following examples show how to use
semantic-ui-react#Transition.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Home.js From 0.4.1-Quarantime with MIT License | 6 votes |
function Home() {
const { user } = useContext(AuthContext);
const {
loading,
data: { getPosts: posts }
} = useQuery(FETCH_POSTS_QUERY);
return (
<Grid columns={1}>
<Grid.Row className="page-title">
<h1 id="quarantime">QUARANTIME</h1>
</Grid.Row>
<Grid.Row>
{user && (
<Grid.Column>
<PostForm />
</Grid.Column>
)}
{loading ? (
<h1>Please wait..</h1>
) : (
<Transition.Group>
{posts &&
posts.map((post) => (
<Grid.Column key={post.id} style={{ marginBottom: 20, marginTop: 20 }}>
<PostCard post={post} />
</Grid.Column>
))}
</Transition.Group>
)}
</Grid.Row>
</Grid>
);
}