Commit 847b0fb4 authored by Scott Ames's avatar Scott Ames
Browse files

Commented out Autocomplete input box

parent 23bb465f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
.cache/
coverage/
docs/
dist/
dist/*
.dist/
+7 −0
Original line number Diff line number Diff line
@@ -9,6 +9,13 @@
    ]
  ],
  "plugins": [
    [
      "@babel/plugin-transform-runtime",
      {
        "regenerator": true
      }
    ],

    [
      "babel-plugin-import",
      {
+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ import MapContainer from "./MapContainer.jsx";
import ListSubheader from "@material-ui/core/ListSubheader";
import WellKnownTextInput from "../presentational/WellKnownTextInput.jsx";
import CreditsDisplay from "../presentational/CreditsDisplay.jsx";
import AutoCompleteInput from "../presentational/AutoCompleteInput.jsx";
//import AutoCompleteInput from "../presentational/AutoCompleteInput.jsx";

/**
 * Controls css styling for this component using js to css
@@ -92,7 +92,7 @@ export default function App() {
            <MenuItem value="Charon">Charon</MenuItem>
          </Select>
        </FormControl>
        <AutoCompleteInput className={classes.autoComplete} />
        {/* <AutoCompleteInput className={classes.autoComplete} /> */}
      </div>
      <Paper elevation={10}>
        <ConsoleContainer target={targetPlanet} />
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ export default class MapContainer extends Component {
  }

  /**
   * Invokes when the component is successfully mounted to the DOM, then
   * Invoked when the component is successfully mounted to the DOM, then
   * handles all of the map intialization and creation.
   */
  componentDidMount() {