
* Fix app embed * initial setup * Create ButtonWithSelect component * Use context * Use dialog * Handle app-bridge actions * Code adjustments, bump packages * Fix tests * Fix schema formatting * Send response * Use latest package versions
12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
import { makeStyles } from "@saleor/macaw-ui";
|
|
|
|
export const useStyles = makeStyles(
|
|
() => ({
|
|
iframe: {
|
|
width: "100%",
|
|
height: "100%",
|
|
border: "none"
|
|
}
|
|
}),
|
|
{ name: "AppFrame" }
|
|
);
|