diff --git a/src/components/Footer.experiment.tsx b/src/components/Footer.experiment.tsx new file mode 100644 index 0000000..c5f8638 --- /dev/null +++ b/src/components/Footer.experiment.tsx @@ -0,0 +1,82 @@ +import React from 'react' +import './Footer.css' + +const Footer: React.FC = () => { + return ( + + ) +} + +export default Footer diff --git a/src/components/Footer.original.tsx b/src/components/Footer.original.tsx new file mode 100644 index 0000000..92e6cf9 --- /dev/null +++ b/src/components/Footer.original.tsx @@ -0,0 +1,78 @@ +import React from 'react' +import './Footer.css' + +const Footer: React.FC = () => { + return ( + + ) +} + +export default Footer diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 92e6cf9..3a3e725 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,78 +1,16 @@ -import React from 'react' -import './Footer.css' +"use client"; +import { ProbatProviderClient, Experiment } from "@probat/react"; +import OriginalComponent from "./Footer.original"; +import ExperimentVariant from "./Footer.experiment"; -const Footer: React.FC = () => { +export default function Footer(props: any) { return ( - - ) + + } + variants={{ experiment: }} + /> + + ); } - -export default Footer