mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* API client utility * moves test helpers to the test directory * Utility to namespace local storage keys * LoginSuccessfulPage component * Check icon * adds auth to redux state * successful form submission * Allow tests to load dummy SVG static images & test fixes
24 lines
465 B
JavaScript
24 lines
465 B
JavaScript
import React, { Component, PropTypes } from 'react';
|
|
import { Style } from 'radium';
|
|
import Footer from './Footer';
|
|
import globalStyles from '../../styles/global';
|
|
|
|
export class App extends Component {
|
|
static propTypes = {
|
|
children: PropTypes.element,
|
|
};
|
|
|
|
render () {
|
|
const { children } = this.props;
|
|
|
|
return (
|
|
<div>
|
|
<Style rules={globalStyles} />
|
|
{children}
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default App;
|