Showcase
Frontastic component name
Showcase
Page type
Any page type
Example images


Code samples
{
"tasticType": "frontastic/ui/content/showcase",
"name": "Show Case",
"category": "Content",
"icon": "wrap_text",
"schema": [
{
"name": "Content",
"fields": [
{
"label": "Text",
"field": "content",
"type": "text"
}
]
}
]
}
import React from 'react';
import Showcase, { Props as ShowcaseProps } from 'components/frontastic-ui/showcase';
interface Props {
data: ShowcaseProps;
}
const ShowcaseTastic: React.FC<Props> = ({ data }) => {
return <Showcase {...data} />;
};
export default ShowcaseTastic;
Updated 10 days ago
Did this page help you?