Created
June 6, 2019 17:32
-
-
Save ivanbtrujillo/499f13c4753e6e716a9ca74259f4ebe0 to your computer and use it in GitHub Desktop.
react-testing-library-article-1
This file contains 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
import React from "react"; | |
const Sum = () => ( | |
<div> | |
<input data-testid="value1" /> | |
<input data-testid="value2" /> | |
</div> | |
); | |
export default Sum; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment