Add reminder creator

This commit is contained in:
jude
2023-10-30 21:24:05 +00:00
parent 0f259824fc
commit e36d2610da
14 changed files with 237 additions and 3 deletions

View File

@ -0,0 +1,18 @@
export const Title = ({ title, onChange }) => (
<>
<label class="is-sr-only" for="embedTitle">
Embed Title
</label>
<textarea
class="discord-title message-input autoresize"
placeholder="Embed Title..."
maxlength={256}
rows={1}
name="embed_title"
value={title}
onChange={(ev) => {
onChange(ev.currentTarget.value);
}}
></textarea>
</>
);