Skip to content

feat: Add templates page #1510

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
May 18, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: Add template page
  • Loading branch information
kylecarbs committed May 16, 2022
commit a72ba4072796b637ac8869641d8bb4c60f45ca6a
10 changes: 10 additions & 0 deletions site/src/pages/TemplatesPage/TemplatesPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from "react"
import { TemplatesPageView } from "./TemplatesPageView"

const TemplatesPage: React.FC = () => {
return (
<TemplatesPageView />
)
}

export default TemplatesPage
5 changes: 5 additions & 0 deletions site/src/pages/TemplatesPage/TemplatesPageView.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from "react"

export const TemplatesPageView: React.FC = () => {
return <div>testing</div>
}