mirror of
https://github.com/elyby/emails-renderer.git
synced 2024-12-26 07:09:45 +05:30
22 lines
474 B
React
22 lines
474 B
React
|
import styles from './styles';
|
||
|
|
||
|
import { Table } from 'components/table';
|
||
|
|
||
|
export default function BaseLayout(props) {
|
||
|
return (
|
||
|
<Table style={styles.body}>
|
||
|
<tr>
|
||
|
<td>
|
||
|
|
||
|
</td>
|
||
|
<td style={styles.container}>
|
||
|
{props.children}
|
||
|
</td>
|
||
|
<td>
|
||
|
|
||
|
</td>
|
||
|
</tr>
|
||
|
</Table>
|
||
|
);
|
||
|
}
|