a-ghorbani--pocketpal-ai
10 行
272 B
JavaScript
10 行
272 B
JavaScript
import React from 'react';
|
|
import {Text} from 'react-native';
|
|
|
|
// Mock implementation of react-native-code-highlighter for testing
|
|
const CodeHighlighter = ({children, ...props}) => {
|
|
return React.createElement(Text, props, children);
|
|
};
|
|
|
|
export default CodeHighlighter;
|