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 (