<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptLibraryMappings">
+ <file url="PROJECT" libraries="{@types/prop-types}" />
<includedPredefinedLibrary name="Node.js Core" />
</component>
</project>
\ No newline at end of file
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
+ <orderEntry type="library" name="@types/prop-types" level="application" />
</component>
</module>
\ No newline at end of file
+++ /dev/null
-.App {
- text-align: center;
-}
-
-.App-logo {
- animation: App-logo-spin infinite 20s linear;
- height: 40vmin;
-}
-
-.App-header {
- background-color: #282c34;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: calc(10px + 2vmin);
- color: white;
-}
-
-.App-link {
- color: #61dafb;
-}
-
-@keyframes App-logo-spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
-}
+++ /dev/null
-import React from 'react';
-import ReactDOM from 'react-dom';
-import App from './App';
-
-it('renders without crashing', () => {
- const div = document.createElement('div');
- ReactDOM.render(<App/>, div);
- ReactDOM.unmountComponentAtNode(div);
-});
-import React, {Component} from 'react';
-import './App.css';
+import React, {Component} from "react";
import SentimentAnalysis from "./SentimentAnalysis";
class App extends Component {
-import React, {Component} from 'react';
+import React, {Component} from "react";
import PropTypes from "prop-types";
class SearchTerm extends Component {
-import React, {Component} from 'react';
-import PropTypes from 'prop-types';
+import React, {Component} from "react";
+import PropTypes from "prop-types";
class SearchTermsInput extends Component {
constructor(props, context) {
-import React, {Component} from 'react';
+import React, {Component} from "react";
import SearchTermsInput from "./SearchTermsInput";
import SearchTerm from "./SearchTerm";
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
-import App from './App';
+import App from './components/App';
import * as serviceWorker from './serviceWorker';
ReactDOM.render(<App/>, document.getElementById('root'));