import React from 'react'; import { EyeIcon, HelpIcon, PencilIcon, PlusIcon } from './Icons'; import { clickAppendButton, clickEditButton, clickHelpButton, clickViewButton, } from '../lib/clickButton'; interface IntroProps { appendMode: boolean; editMode: boolean; showHelp: boolean; } const Intro: React.FC = ({ appendMode, editMode, showHelp }) => (
Welcome to the Append Editor!{' '} 👋 {' '} Your note is empty.{' '} 🙂 {' '} Click here to get started.{' '} 📝

To get started:

  • Click the Pencil to toggle Edit Mode

  • Click the Plus to toggle Append Mode

View Mode is currently on. When you type in{' '} Edit Mode, your note will automatically render here. In{' '} Append Mode, clicking Append will add the text in the textarea to the end of your note. Click the Eye to turn View Mode off and switch to Edit Only Mode.

If you are using the demo at{' '} beta.appendeditor.com , then your notes will be lost after you close the page.

If you want to save your notes, then click Help and follow the instructions on how to install the Append Editor in{' '} Standard Notes , a free,{' '} open-source , and{' '} end-to-end encrypted {' '} notes app.

If you like Standard Notes, please check out Standard Notes{' '} Extended {' '} for more editors, themes, components, and methods to backup up your data.

Happy note-taking!{' '} 😄

); export default Intro;