- What is a monorepo? What are the alternatives?
- What is Tailwind and why use it?
- What is tsdx?
- What is vite?
- What is bigint used for in JS?
OpenID Connect is a thin layer on top of OAuth 2.0 that provides authorization (identity) on top of authentication (OAuth 2.0). OIDC introduced the identity token (JWT) which contains info about the user.
Allows users to grant access to resources without sharing the password and with revoke-ability.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { CSVReader } from "react-papaparse"; | |
| /** | |
| Render the <CSVStreamer /> component defined below instead of the dropzone component. | |
| */ | |
| export default class CSVStreamer extends React.Component { | |
| render() { | |
| return ( | |
| <CSVReader |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| Box, | |
| FormControl, | |
| FormLabel, | |
| Heading, | |
| HStack, | |
| Icon, | |
| NumberInput, | |
| NumberInputField, | |
| Switch, |