Skip to content

Commit

Permalink
Restore JSS.tsx demo
Browse files Browse the repository at this point in the history
  • Loading branch information
merceyz committed Jun 8, 2019
1 parent 2472823 commit ef7ac30
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/src/pages/system/basics/JSS.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from 'react';
import { styled } from '@material-ui/styles';
import { compose, spacing, palette } from '@material-ui/system';

const Box = styled('div')(
compose(
spacing,
palette,
),
);

function JSS() {
return (
<Box color="white" bgcolor="palevioletred" p={1}>
JSS
</Box>
);
}

export default JSS;

0 comments on commit ef7ac30

Please sign in to comment.