13 lines
191 B
TypeScript
13 lines
191 B
TypeScript
import { createStyles } from 'antd-style'
|
|
|
|
export default createStyles(() => ({
|
|
root: {
|
|
padding: 20
|
|
},
|
|
|
|
content: {
|
|
width: '100%',
|
|
height: '100%'
|
|
}
|
|
}))
|