From d348641838071d3dd7cba20f1157e48837c01d5a Mon Sep 17 00:00:00 2001 From: Casey Crouch Date: Wed, 5 Jan 2022 12:44:47 -0700 Subject: [PATCH] Remove link to Parser Exercise We're undecided on how we want to use the Parser exercise moving forward, so the component is still available if/ when we want to bring it back. We're hiding it for now because candidates would sometimes complete it unnecessarily. --- src/app/App.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/app/App.js b/src/app/App.js index eaf5832..afb17f4 100644 --- a/src/app/App.js +++ b/src/app/App.js @@ -1,11 +1,11 @@ -import React from "react" +import React from "react" import { BrowserRouter as Router, Switch, Route, NavLink, -} from "react-router-dom" -import ParserExercise from "../parser_exercise/ParserExercise" +} from "react-router-dom" +import ParserExercise from "../parser_exercise/ParserExercise" import ProgressBarExercise from "../progress_bar_exercise/ProgressBarExercise" import "./App.scss" @@ -19,8 +19,12 @@ function App() {

Exercises

@@ -40,4 +44,4 @@ function App() { ) } -export default App; +export default App