feat: add services page
fix: change styles, fix hook trigger, add ux feat: setup custom error messages refactor: conform to new style guide refactor: migrate to graphql refactor: migrate to Ramda fix: update state on mutation refactor: migrate error ux to graphql fix: change structure of accounts config fix: use absolute imports fix: move makeStyles out of components fix: correct Strike behaviour
This commit is contained in:
parent
1dba321052
commit
b9d2341cd1
30 changed files with 2579 additions and 306 deletions
|
|
@ -71,9 +71,9 @@ const Table = ({ children, className, ...props }) => (
|
|||
</div>
|
||||
)
|
||||
|
||||
const THead = ({ children }) => {
|
||||
const THead = ({ children, className }) => {
|
||||
const classes = useStyles()
|
||||
return <div className={classes.header}>{children}</div>
|
||||
return <div className={classnames(className, classes.header)}>{children}</div>
|
||||
}
|
||||
|
||||
const TBody = ({ children, className }) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue