Add social preview page

This commit is contained in:
Kurt Hutten
2021-07-30 21:04:28 +10:00
parent 3f310a9aaf
commit e4bf8f5e81
7 changed files with 213 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
import { Link, routes } from '@redwoodjs/router'
import SocialCardCell from 'src/components/SocialCardCell'
interface Props {
userName: string
projectTitle: string
}
const SocialCardPage = ({ userName, projectTitle }: Props) => {
return <SocialCardCell userName={userName} projectTitle={projectTitle} />
}
export default SocialCardPage