12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
|
|
import Content from '@/components/ui/content';
|
|
import { ThemedText } from '@/components/ui/themed-text';
|
|
|
|
export default function TestsScreen() {
|
|
return (
|
|
<Content>
|
|
<ThemedText type="title" className='mb-3'>Tests</ThemedText>
|
|
</Content>
|
|
);
|
|
}
|