Register
Frontastic component name
Register
Page type
Used on the My account dynamic page
Example images


Code samples
{
"tasticType": "frontastic/ui/account/register",
"name": "Frontastic UI account register",
"category": "Account",
"icon": "account_circle",
"schema": [
{
"name": "Media",
"fields": [
{
"label": "Logo",
"field": "logo",
"type": "media",
"required": true
}
]
},
{
"name": "Content",
"fields": [
{
"label": "Login link",
"field": "loginLink",
"type": "reference",
"required": true
}
]
}
]
}
import React from 'react';
import Register, { RegisterProps } from 'components/frontastic-ui/account/register';
export interface Props {
data: RegisterProps;
}
const AccountRegisterTastic: React.FC<Props> = ({ data }) => {
return <Register {...data} />;
};
export default AccountRegisterTastic;
Updated 3 months ago
Did this page help you?