diff --git a/src/modern/types/__tests__/ReactFlowPropTypes-test.js b/src/modern/types/__tests__/ReactFlowPropTypes-test.js new file mode 100644 index 0000000000..6313667651 --- /dev/null +++ b/src/modern/types/__tests__/ReactFlowPropTypes-test.js @@ -0,0 +1,18 @@ +/** + * Copyright 2014, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @emails react-core + */ + +"use strict"; + +describe('ReactFlowPropTypes', function() { + + // TODO: Test Flow integration and ensure that prop types works. + +}); diff --git a/src/modern/types/__tests__/ReactTypeScriptPropTypes-test.js b/src/modern/types/__tests__/ReactTypeScriptPropTypes-test.js new file mode 100644 index 0000000000..27aca01fa1 --- /dev/null +++ b/src/modern/types/__tests__/ReactTypeScriptPropTypes-test.js @@ -0,0 +1,18 @@ +/** + * Copyright 2014, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @emails react-core + */ + +"use strict"; + +describe('ReactTypeScriptPropTypes', function() { + + // TODO: Test TypeScript integration and ensure that prop types works. + +});