Skip to content

Commit a72ba40

Browse files
committed
feat: Add template page
1 parent 1ed69b9 commit a72ba40

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from "react"
2+
import { TemplatesPageView } from "./TemplatesPageView"
3+
4+
const TemplatesPage: React.FC = () => {
5+
return (
6+
<TemplatesPageView />
7+
)
8+
}
9+
10+
export default TemplatesPage
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import React from "react"
2+
3+
export const TemplatesPageView: React.FC = () => {
4+
return <div>testing</div>
5+
}

0 commit comments

Comments
 (0)