forked from mirrors/gecko-dev
--HG-- rename : devtools/client/inspector/fonts/components/App.js => devtools/client/inspector/fonts/components/FontsApp.js rename : devtools/client/inspector/layout/components/App.js => devtools/client/inspector/layout/components/LayoutApp.js
27 lines
623 B
JavaScript
27 lines
623 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
const {
|
|
DOM: dom,
|
|
PureComponent,
|
|
} = require("devtools/client/shared/vendor/react");
|
|
const { connect } = require("devtools/client/shared/vendor/react-redux");
|
|
|
|
class ChangesApp extends PureComponent {
|
|
static get propTypes() {
|
|
return {};
|
|
}
|
|
|
|
render() {
|
|
return dom.div(
|
|
{
|
|
id: "changes-container",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = connect(state => state)(ChangesApp);
|