2
0

feat(results): 🛂 Limit analytics

This commit is contained in:
Baptiste Arnaud
2022-02-13 06:53:48 +01:00
parent ec470b578c
commit f46ba381ad
5 changed files with 54 additions and 19 deletions

View File

@ -9,8 +9,13 @@ import { Edge } from './Edge'
type Props = {
edges: EdgeProps[]
answersCounts?: AnswersCount[]
onUnlockProPlanClick?: () => void
}
export const Edges = ({ edges, answersCounts }: Props) => {
export const Edges = ({
edges,
answersCounts,
onUnlockProPlanClick,
}: Props) => {
return (
<chakra.svg
width="full"
@ -29,6 +34,7 @@ export const Edges = ({ edges, answersCounts }: Props) => {
key={answerCount.blockId}
answersCounts={answersCounts}
blockId={answerCount.blockId}
onUnlockProPlanClick={onUnlockProPlanClick}
/>
))}
<marker