mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 16:07:01 +00:00
14 lines
291 B
TypeScript
14 lines
291 B
TypeScript
import React, { Component } from 'react';
|
|
import ContentZone from 'components/agility-global/ContentZone'
|
|
|
|
const MainTemplate = (props:any) => {
|
|
|
|
return (
|
|
<div className="one-column-template">
|
|
<ContentZone name='MainContentZone' {...props} />
|
|
</div>
|
|
);
|
|
|
|
}
|
|
|
|
export default MainTemplate; |