- 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.
npm run install-dependencies
npm start
- visit url http://localhost:3000/
- create client folder
- open terminal
cd client
npx create-react-app .
npm start
- Utilized Normalize.css and Global Styles, CSS in JS (styled-components)
- normalize.css normalize docs
- Checkout Styled Components Docs
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
- React Router Version 6
- React Router Docs
npm install history@5 react-router-dom@6
- Four components utilized
import { BrowserRouter, Routes, Route, Link } from "react-router-dom";