Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
component: "text",
},
{
label: "Recipient",
name: "rawFrontmatter.recipient",
component: "text",
},
{
label: "Body",
name: "rawMarkdownBody",
component: "markdown",
},
],
}
export default remarkForm(Contact, ContactForm)
export const Form = styled.form`
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto;
grid-gap: 1.5rem;
justify-items: stretch;
@media (min-width: ${props => props.theme.breakpoints.medium}) {
grid-template-columns: 1fr 1fr;
}
`
export const FormField = styled.div`
input,
textarea {