mirror of
https://github.com/elyby/emails-renderer.git
synced 2025-05-31 14:12:05 +05:30
24 lines
482 B
TypeScript
24 lines
482 B
TypeScript
import React, { ComponentType } from 'react';
|
|
|
|
import styles from './styles';
|
|
|
|
import { Table } from 'components/table';
|
|
|
|
const BaseLayout: ComponentType = ({ children }) => (
|
|
<Table style={styles.body}>
|
|
<tr>
|
|
<td>
|
|
|
|
</td>
|
|
<td style={styles.container}>
|
|
{children}
|
|
</td>
|
|
<td>
|
|
|
|
</td>
|
|
</tr>
|
|
</Table>
|
|
);
|
|
|
|
export default BaseLayout;
|