Skip to content

Commit

Permalink
chore: wrap Feedbacks component with SectionWrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
mces58 committed Aug 8, 2024
1 parent 25cc10d commit 1eed860
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion v2/src/components/Feedbacks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { motion } from 'framer-motion';

import FeedbackCard from '@/components/FeedbackCard';
import { testimonials } from '@/constants';
import SectionWrapper from '@/hoc/SectionWrapper';
import { styles } from '@/styles';
import { textVariant } from '@/utils/motion';

Expand All @@ -23,4 +24,6 @@ const Feedbacks = () => {
);
};

export default Feedbacks;
const WrappedFeedbacks = SectionWrapper(Feedbacks, '');

export default WrappedFeedbacks;

0 comments on commit 1eed860

Please sign in to comment.