v1 convert to Agility

This commit is contained in:
Joel Varty
2021-01-15 17:37:36 -05:00
parent 742ac5786e
commit 2dd8d59ae7
42 changed files with 1521 additions and 167 deletions

View File

@@ -0,0 +1,14 @@
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;