Skip to content

Udokailodigwe/Job-Application-Management-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 

Repository files navigation

Job-Application-Management-App

Track Your Job Search

  • Job Tracking application, to enable you keep track of your job application, upcoming interviews and essentially organizing your job search activities. Makes your life as a potential job candidate stress free, so you can concentrate on landing your preferred job.

Run The App Locally

npm run install-dependencies
npm start

Setup React App

  • create client folder
  • open terminal
cd client
npx create-react-app .
npm start

App Styling

npm install normalize.css
  • import 'normalize.css' in index.js

  • for styled components

npm install styled-components
import styled from "styled-components";

const El = styled.el`
  // styles go here
`;
const Wrapper = styled.el``;

const Component = () => {
  return (
    <Wrapper>
      <h1> Component</h1>
    </Wrapper>
  );
};
  • Wrappers was used only for styling
  • Wrappers folder in assets

Site Navigation

npm install history@5 react-router-dom@6
  • Four components utilized
import { BrowserRouter, Routes, Route, Link } from "react-router-dom";