13 lines
212 B
TypeScript
13 lines
212 B
TypeScript
![]() |
import { makeStyles } from "@saleor/macaw-ui";
|
||
|
|
||
|
export const useStyles = makeStyles(
|
||
|
() => ({
|
||
|
iframe: {
|
||
|
width: "100%",
|
||
|
height: "100%",
|
||
|
border: "none"
|
||
|
}
|
||
|
}),
|
||
|
{ name: "AppFrame" }
|
||
|
);
|