Add social preview page
This commit is contained in:
13
app/web/src/pages/SocialCardPage/SocialCardPage.tsx
Normal file
13
app/web/src/pages/SocialCardPage/SocialCardPage.tsx
Normal 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
|
||||
Reference in New Issue
Block a user