One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| import { NextPage } from 'next'; | |
| import { Navbar } from '../modules/shared/web/components'; | |
| const Home: NextPage = () => ( | |
| <Navbar> | |
| <Navbar.Brand | |
| href="/" | |
| src={SkydropxLogo} | |
| alt="Smiling man stands behind delivery truck" | |
| /> |
| import { Children, createContext, FC, ReactNode, useContext } from 'react'; | |
| type SlotContextValue = Record<string, ReactNode>; | |
| type SlotRootProps = { | |
| content: ReactNode; | |
| }; | |
| type SlotTemplateProps = { | |
| name?: string; |
| export enum HttpStatus { | |
| CONTINUE = 100, | |
| SWITCHING_PROTOCOLS = 101, | |
| PROCESSING = 102, | |
| EARLYHINTS = 103, | |
| OK = 200, | |
| CREATED = 201, | |
| ACCEPTED = 202, | |
| NON_AUTHORITATIVE_INFORMATION = 203, | |
| NO_CONTENT = 204, |
Lorem ipsum dolor...
| #!/bin/bash | |
| sudo add-apt-repository -y ppa:git-core/ppa | |
| sudo apt-get update | |
| sudo apt-get install git -y |
| git branch | grep -v "master\|develop" | xargs git branch -D |