
* Update eslint config to prevent default exports * exlucde vitest config from banned default exports * Remove default exports from Monitoring App * Replace default exports with named exports * Fix klaviyo import path * Replace default exports in CMS
35 lines
1 KiB
TypeScript
35 lines
1 KiB
TypeScript
import { Paper, Typography } from "@material-ui/core";
|
|
import { makeStyles } from "@saleor/macaw-ui";
|
|
|
|
const useStyles = makeStyles((theme) => {
|
|
return {
|
|
instructionsContainer: {
|
|
padding: 15,
|
|
},
|
|
};
|
|
});
|
|
|
|
export const Instructions = () => {
|
|
const styles = useStyles();
|
|
|
|
return (
|
|
<Paper elevation={0} className={styles.instructionsContainer}>
|
|
<Typography paragraph variant="h4">
|
|
Welcome to Emails and Messages App!
|
|
</Typography>
|
|
<Typography paragraph>
|
|
The application will allow you to send emails and messages to your customers using different
|
|
services.
|
|
</Typography>
|
|
|
|
<Typography paragraph variant="h4">
|
|
How to configure the app
|
|
</Typography>
|
|
<Typography paragraph>
|
|
Start by creating a new configuration for provider of your choice. You can create multiple
|
|
configurations and then assign them to channels. Navigate to the relevant tab to configure
|
|
the provider.
|
|
</Typography>
|
|
</Paper>
|
|
);
|
|
};
|