Markdown
Frontastic component name
Markdown
Suggested page placement
Any page
Example image
Code samples
{
"tasticType": "frontastic/ui/content/markdown",
"name": "Frontastic UI markdown",
"icon": "wrap_text",
"category": "Content",
"schema": [
{
"name": "Content",
"fields": [
{
"label": "Content",
"field": "markdown",
"type": "markdown",
"translatable": true,
"required": true
}
]
}
]
}
import Markdown from 'components/frontastic-ui/content/markdown';
const MarkdownTastic = ({ data }) => {
return <Markdown text={data.markdown} />;
};
export default MarkdownTastic;
Updated 3 days ago
Did this page help you?