11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
import React from "react";
|
|
import { Text, View } from "react-native";
|
|
|
|
export default function ScreenCameraJobSearch() {
|
|
return (
|
|
<View>
|
|
<Text>This is the media cache screen.</Text>
|
|
</View>
|
|
);
|
|
}
|