import { ModuleFields, TextField, RichTextField, ImageField, } from '@hubspot/cms-components/fields'; import { RichText } from '@hubspot/cms-components'; import logo from '../../../assets/sprocket.svg'; import styles from '../../../styles/getting-started.module.css'; export function Component({ fieldValues, hublParameters }) { const { src, alt, width, height } = fieldValues.logo; const { brandColors } = hublParameters; return (
{alt}

{fieldValues.headline}

Examples Read the Docs
); } const richTextFieldDefaultValue = `
Deploy to your theme by running
npm run deploy
from the root directory
`; export const fields = ( ); export const meta = { label: 'Getting Started with CMS React', };