Created
June 8, 2020 18:30
-
-
Save alexandargyurov/83227b84b67fbdd07395fc3d793c5b21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Article(props) { | |
| return ( | |
| <div style={{ backgroundColor: '#b0ffc0', borderRadius: 8, padding: 12, margin: 12, width: 'max-content' }}> | |
| <a href={props.link} style={{ textDecoration: 'none' }}> | |
| <h1>{props.title}</h1> | |
| <p>{props.description}</p> | |
| <p>{props.date}</p> | |
| </a> | |
| </div> | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment