Skip to content

Instantly share code, notes, and snippets.

@jeffmo
Created November 2, 2015 16:23
Show Gist options
  • Save jeffmo/bf1e754d12c9a5336919 to your computer and use it in GitHub Desktop.
Save jeffmo/bf1e754d12c9a5336919 to your computer and use it in GitHub Desktop.
// @flow
import React from "React";
class JDiv extends React.Component {
props: {
id: string
};
}
// Should be a type error ('id' takes a string, not a number..)
<JDiv id={42} />;
Found 0 errors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment