Skip to content
View kgregory's full-sized avatar
Yes, have some.
Yes, have some.

Organizations

@STORIS @mui
Block or Report

Block or report kgregory

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Inline component, horizontally flex ... Inline component, horizontally flex components
    1
    import * as React from "react";
    2
    import { makeStyles } from "@material-ui/core/styles";
    3
    
    
    4
    interface InlineProps
    5
      extends React.DetailedHTMLProps<
  2. Stack component, vertically flex com... Stack component, vertically flex components
    1
    import * as React from "react";
    2
    import { makeStyles } from "@material-ui/core/styles";
    3
    
    
    4
    interface StackProps
    5
      extends React.DetailedHTMLProps<
  3. Sticky Material-UI ListSubheader tha... Sticky Material-UI ListSubheader that appears beneath fixed AppBar
    1
    import ListSubheader from "@material-ui/core/ListSubheader";
    2
    import { makeStyles } from "@material-ui/core/styles";
    3
    
    
    4
    /**
    5
     * I have a separate gist for this that explains it a bit
  4. Hook to establish the relationship b... Hook to establish the relationship between a button and its popup menu
    1
    /**
    2
     * A hook that helps establish the relationship between button and menu
    3
     * Intended for Material-UI IconButton and Menu components, but would work nicely elsewhere
    4
     */
    5
    import type { MouseEventHandler } from "react";
  5. Build JSS with property relative to ... Build JSS with property relative to material-ui theme Toolbar height
    1
    /*
    2
    3
    Since the release of material-ui 1.0.0-beta.11, there is a toolbar mixin available 
    4
    on the theme that provides the toolbar minHeight for each breakpoint. If you need to style 
    5
    an element relative to the standard height of the AppBar component, you can use this 
  6. Virtualized, Auto-Height Table power... Virtualized, Auto-Height Table powered by material-ui and react-virtualized
    1
    import React from "react";
    2
    import { PropTypes } from "prop-types";
    3
    import classNames from "classnames";
    4
    import withStyles from "@material-ui/core/styles/withStyles";
    5
    import TableCell from "@material-ui/core/TableCell";