Skip to content

Instantly share code, notes, and snippets.

@ivanbtrujillo
Created June 6, 2019 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivanbtrujillo/499f13c4753e6e716a9ca74259f4ebe0 to your computer and use it in GitHub Desktop.
Save ivanbtrujillo/499f13c4753e6e716a9ca74259f4ebe0 to your computer and use it in GitHub Desktop.
react-testing-library-article-1
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