Skip to content

Commit

Permalink
Remove "Use" from component name
Browse files Browse the repository at this point in the history
  • Loading branch information
Breno committed Oct 21, 2024
1 parent db53b6c commit 6cdb34f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
Wrapper,
} from './styles';

const UseTheBestRealTimeCdc = () => {
const TheBestRealTimeCdc = () => {
return (
<Container>
<Wrapper>
Expand Down Expand Up @@ -56,4 +56,4 @@ const UseTheBestRealTimeCdc = () => {
);
};

export default UseTheBestRealTimeCdc;
export default TheBestRealTimeCdc;
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Hero from '../components/Homepage/Hero';
import MoveAndTransform from '../components/Homepage/MoveAndTransform';
import CaseStudies from '../components/Homepage/CaseStudies';
import SecureYourData from '../components/Homepage/SecureYourData';
import UseTheBestRealTimeCdc from '../components/Homepage/UseTheBestRealTimeCdc';
import TheBestRealTimeCdc from '../components/Homepage/TheBestRealTimeCdc';
import BuildInMinutes from '../components/Homepage/BuildInMinutes';
import AutomateDataops from '../components/Homepage/AutomateDataops';
import InnovateFaster from '../components/Homepage/InnovateFaster';
Expand All @@ -23,7 +23,7 @@ const IndexPage = () => {
<CaseStudies />
<DeploymentModes />
<SecureYourData />
<UseTheBestRealTimeCdc />
<TheBestRealTimeCdc />
<BuildInMinutes />
<AutomateDataops />
<InnovateFaster />
Expand Down

0 comments on commit 6cdb34f

Please sign in to comment.