// @flow import React from 'react'; import styled from 'styled-components'; import Key from 'components/Key'; import Flex from 'components/Flex'; import HelpText from 'components/HelpText'; function MarkdownShortcuts() { return ( Know a little markdown syntax? You {"'"} re going to love all of the markdown shortcuts built right into the Atlas editor. # Space ## Space ### Space 1. Space - Space [ ] Space > Space --- {'```'} _italic_ **bold** ~~strikethrough~~ {'`code`'} ); } const List = styled.dl` width: 100%; overflow: hidden; padding: 0; margin: 0 `; const Keys = styled.dt` float: left; width: 25%; padding: 0 0 4px; margin: 0 `; const Label = styled.dd` float: left; width: 75%; padding: 0 0 4px; margin: 0 `; export default MarkdownShortcuts;