import React from 'react'; import { Frame } from 'react-keyframes'; let frames = []; const p = (node) => frames.push(node); const E = (props) => { return ({ props.children }); }; const line1 = (

Hi there,

); const line2 = (

We're excited to share what we’re building.

); const line3 = (

We **love** Markdown,

); const line4 = (

but we also get that it's not for everyone.

); const line5 = (

Together with you,

); const line6 = (

we want to build the best place to

); const line7 = (

share ideas,

); const line8 = (

tell stories,

); const line9 = (

and build knowledge.

); const line10 = (

We're just getting started.

); const line11 = (

Welcome to Atlas.

); p({line1}{line2}{line3}{line4}{line5}{line6}{line7}{line8}{line9}{line10}{line11}); // Hmms leaving this here for now, would be nice to something export default frames;