Skip to content

Commit

Permalink
Rename TestX to Test1978
Browse files Browse the repository at this point in the history
  • Loading branch information
tboba committed Nov 27, 2023
1 parent 5441445 commit 1155a45
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion FabricTestExample/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ import Test1726 from './src/Test1726';
import Test1802 from './src/Test1802';
import Test1844 from './src/Test1844';
import Test1864 from './src/Test1864';
import TestX from './src/TestX';
import Test1978 from './src/Test1978';

enableFreeze(true);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Home3 = () => (

const Stack = createNativeStackNavigator();

const TestX = () => {
const Test1978 = () => {
const [hasChangedState, setHasChangedState] = useState(true);

return (
Expand Down Expand Up @@ -87,4 +87,4 @@ const styles = StyleSheet.create({
},
});

export default TestX;
export default Test1978;
4 changes: 2 additions & 2 deletions TestsExample/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ import Test1791 from './src/Test1791';
import Test1802 from './src/Test1802';
import Test1844 from './src/Test1844';
import Test1864 from './src/Test1864';
import TestX from './src/TestX';
import Test1978 from './src/Test1978';

enableFreeze(true);

export default function App() {
return <TestX />;
return <Test42 />;
}
4 changes: 2 additions & 2 deletions TestsExample/src/TestX.tsx → TestsExample/src/Test1978.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Home3 = () => (

const Stack = createNativeStackNavigator();

const TestX = () => {
const Test1978 = () => {
const [hasChangedState, setHasChangedState] = useState(true);

return (
Expand Down Expand Up @@ -87,4 +87,4 @@ const styles = StyleSheet.create({
},
});

export default TestX;
export default Test1978;

0 comments on commit 1155a45

Please sign in to comment.