Skip to content

Commit 688ea55

Browse files
committed
refactor: rename ScreenWrapper to Pascal Case
1 parent aa7a6b1 commit 688ea55

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

apps/computer-vision/app/classification/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { View, StyleSheet, Image, Text, ScrollView } from 'react-native';
55
import { BottomBar } from '../../components/BottomBar';
66
import React, { useContext, useEffect, useState } from 'react';
77
import { GeneratingContext } from '../../context';
8-
import ScreenWrapper from '../../screenWrapper';
8+
import ScreenWrapper from '../../ScreenWrapper';
99

1010
export default function ClassificationScreen() {
1111
const [results, setResults] = useState<{ label: string; score: number }[]>(

apps/computer-vision/app/image_segmentation/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
import { View, StyleSheet, Image } from 'react-native';
1717
import React, { useContext, useEffect, useState } from 'react';
1818
import { GeneratingContext } from '../../context';
19-
import ScreenWrapper from '../../screenWrapper';
19+
import ScreenWrapper from '../../ScreenWrapper';
2020

2121
const width = 224;
2222
const height = 224;

apps/computer-vision/app/object_detection/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { View, StyleSheet, Image } from 'react-native';
1010
import ImageWithBboxes from '../../components/ImageWithBboxes';
1111
import React, { useContext, useEffect, useState } from 'react';
1212
import { GeneratingContext } from '../../context';
13-
import ScreenWrapper from '../../screenWrapper';
13+
import ScreenWrapper from '../../ScreenWrapper';
1414

1515
export default function ObjectDetectionScreen() {
1616
const [imageUri, setImageUri] = useState('');

apps/computer-vision/app/ocr/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { View, StyleSheet, Image, Text, ScrollView } from 'react-native';
1212
import ImageWithBboxes2 from '../../components/ImageWithOCRBboxes';
1313
import React, { useContext, useEffect, useState } from 'react';
1414
import { GeneratingContext } from '../../context';
15-
import ScreenWrapper from '../../screenWrapper';
15+
import ScreenWrapper from '../../ScreenWrapper';
1616

1717
export default function OCRScreen() {
1818
const [imageUri, setImageUri] = useState('');

apps/computer-vision/app/ocr_vertical/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { View, StyleSheet, Image, Text, ScrollView } from 'react-native';
1212
import ImageWithBboxes2 from '../../components/ImageWithOCRBboxes';
1313
import React, { useContext, useEffect, useState } from 'react';
1414
import { GeneratingContext } from '../../context';
15-
import ScreenWrapper from '../../screenWrapper';
15+
import ScreenWrapper from '../../ScreenWrapper';
1616

1717
export default function VerticalOCRScree() {
1818
const [imageUri, setImageUri] = useState('');

apps/computer-vision/app/style_transfer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
import { View, StyleSheet, Image } from 'react-native';
99
import React, { useContext, useEffect, useState } from 'react';
1010
import { GeneratingContext } from '../../context';
11-
import ScreenWrapper from '../../screenWrapper';
11+
import ScreenWrapper from '../../ScreenWrapper';
1212

1313
export default function StyleTransferScreen() {
1414
const model = useStyleTransfer({

0 commit comments

Comments
 (0)