import React from 'react'; import PropTypes from 'prop-types'; import Interactive from 'react-interactive'; import { Link } from 'react-router'; import s from '../styles/app.style'; const language = "ENG"; const bkgrnd = "05"; const propTypes = { children: PropTypes.element.isRequired, routes: PropTypes.array.isRequired, }; function App({ children, routes }) { return (
{children}
©2008 Chaotic USA Entertainment Group, Inc.
U.S. Pat 5810666 and 5954332 and other pending patent applications. All Rights Reserved.
); } App.propTypes = propTypes; export default App;