From 88c25354a595c7a0e0e0de629f86d9541f162309 Mon Sep 17 00:00:00 2001 From: Jori Lallo Date: Thu, 10 Mar 2016 23:06:36 -0800 Subject: [PATCH] Better default text --- src/Reducers/index.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/Reducers/index.js b/src/Reducers/index.js index adca3d4fd..6472f0f37 100644 --- a/src/Reducers/index.js +++ b/src/Reducers/index.js @@ -38,8 +38,18 @@ const historySidebar = (state = { visible: false }, action) => { } }; +const defaultTest = `# Welcome to Beautiful Atlas + +This is just a small preview here's what you can do: + +- Write markdown or rich text, you choose +- Dont' worry about saving +- One document for now +- More to come +` + const textDefaultState = { - text: '', + text: defaultTest, revisions: [], unsavedChanges: false, };