-
Notifications
You must be signed in to change notification settings - Fork 620
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' into leo/feat/advanced-search-filter-be
- Loading branch information
Showing
6 changed files
with
51 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
22 changes: 22 additions & 0 deletions
22
...ess-cms/src/admin/views/contentModels/importing/components/Model/DataListInstructions.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from "react"; | ||
import styled from "@emotion/styled"; | ||
|
||
const Instructions = styled("div")({ | ||
fontSize: "0.8rem", | ||
margin: "10px 0" | ||
}); | ||
|
||
export const DataListInstructions: React.VFC = () => { | ||
return ( | ||
<Instructions> | ||
<h4>Instructions</h4> | ||
<p> | ||
To learn how to use the import functionality, please visit{" "} | ||
<a href="https://www.webiny.com/docs/user-guides/headless-cms/advanced/import-export-content-models"> | ||
this article | ||
</a> | ||
. | ||
</p> | ||
</Instructions> | ||
); | ||
}; |
This file contains 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
This file contains 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