Skip to content

Commit

Permalink
add new btn (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-adams authored Nov 15, 2024
1 parent 8a8bdd9 commit dccfad0
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import { Link, routes } from '@redwoodjs/router'

import OutputTemplatesCell from 'src/components/OutputTemplate/OutputTemplatesCell'

const OutputTemplatesPage = () => {
return <OutputTemplatesCell />
return (
<div>
<h2>Output Templates</h2>
<Link to={routes.newOutputTemplate()} className="btn btn-primary mb-4">
Create New Output Template
</Link>
<OutputTemplatesCell />
</div>
)
}

export default OutputTemplatesPage

0 comments on commit dccfad0

Please sign in to comment.