Skip to content

Commit

Permalink
Restore JSS.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
merceyz committed May 3, 2019
1 parent 766a967 commit 3716237
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 3716237

Please sign in to comment.