1import React from 'react' 2import styled from 'styled-components' 3 4const Container = styled.div` 5 margin: 80px 0; 6 border-top: 1px solid black; 7 padding: 20px 0; 8` 9 10const FoundTypo = () => { 11 return ( 12 <Container> 13 <p><span role='img' aria-label='eyes-emoji'>��</span> Found a typo? <a href='https://github.com/npm/cli/'>Let us know!</a></p> 14 <p>The current stable version of npm is <a href='https://github.com/npm/cli/'>here</a>. To upgrade, run: <code className='language-text'>npm install npm@latest -g</code></p> 15 <p> 16 To report bugs or submit feature requests for the docs, please post <a href='https://github.com/npm/cli/issues'>here</a>. 17 Submit npm issues <a href='https://github.com/npm/cli/issues'>here.</a> 18 </p> 19 </Container> 20 ) 21} 22 23export default FoundTypo 24