- fetch entity data only
- does not alter any data, ever
- create a new entity with the data values provided in the body
- if an entity already exists with these values, create it anyway (read: non-idempotent)
- should not be used to alter an existing entity
import { createStyles, Paper, Table, TableBody, TableContainer, TablePagination, Theme } from '@material-ui/core'; | |
import { makeStyles, TableCell, TableHead, TableRow, TableSortLabel } from '@material-ui/core'; | |
import React from 'react'; | |
interface IDataTableColumn { | |
id: string | |
name: string, | |
enableSort?: boolean, | |
align?: "center" | "inherit" | "justify" | "left" | "right" | |
} |
Articles βββββββββββββββββββββ 65.1% | |
Videos βββββββββββββββββββββ 88.3% | |
Books βββββββββββββββββββββ 41.4% | |
Learn React βββββββββββββββββββββ 57.1% | |
Learn TypeScript βββββββββββββββββββββ 100.0% | |
GitHub βββββββββββββββββββββ 80.0% |