UNPKG

@proca/widget

Version:

Proca is an open-source campaign toolkit designed to empower activists and organisations in their digital advocacy efforts. It provides a flexible and customisable platform for creating and managing online petitions, email campaigns, and other forms of di

22 lines (20 loc) 581 B
import React from "react"; //import TextField from '@material-ui/core/TextField'; import TextField from "@components/TextField"; import Grid from "@material-ui/core/Grid"; import { useTranslation } from "react-i18next"; export default function TwitterMessage(props) { const { t } = useTranslation(); return ( <Grid container spacing={1} alignItems="stretch"> <Grid item xs={12}> <TextField name="message" multiline form={props.form} label={props.label || t("Your message")} /> </Grid> </Grid> ); }