diff --git a/src/core/ReactDefaultInjection.js b/src/core/ReactDefaultInjection.js index f0febc2f66..b1a0d90ac1 100644 --- a/src/core/ReactDefaultInjection.js +++ b/src/core/ReactDefaultInjection.js @@ -19,6 +19,7 @@ "use strict"; var ReactDOM = require('ReactDOM'); +var ReactDOMButton = require('ReactDOMButton'); var ReactDOMForm = require('ReactDOMForm'); var ReactDOMInput = require('ReactDOMInput'); var ReactDOMOption = require('ReactDOMOption'); @@ -59,6 +60,7 @@ function inject() { }); ReactDOM.injection.injectComponentClasses({ + button: ReactDOMButton, form: ReactDOMForm, input: ReactDOMInput, option: ReactDOMOption, diff --git a/src/dom/components/ReactDOMButton.js b/src/dom/components/ReactDOMButton.js new file mode 100644 index 0000000000..83dedd5459 --- /dev/null +++ b/src/dom/components/ReactDOMButton.js @@ -0,0 +1,64 @@ +/** + * Copyright 2013 Facebook, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * @providesModule ReactDOMButton + */ + +"use strict"; + +var ReactCompositeComponent = require('ReactCompositeComponent'); +var ReactDOM = require('ReactDOM'); + +var keyMirror = require('keyMirror'); + +// Store a reference to the