From 82a32fbda3bb694941f1957ea544f956ad28d615 Mon Sep 17 00:00:00 2001 From: Michal Sek Date: Fri, 5 Jul 2024 09:36:41 +0200 Subject: [PATCH] fix: make typescript pass --- example/src/App.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/example/src/App.tsx b/example/src/App.tsx index db6b026f..c65350db 100644 --- a/example/src/App.tsx +++ b/example/src/App.tsx @@ -5,13 +5,13 @@ import { multiply } from 'react-native-audio-context'; const result = multiply(3, 7); -export default function App() { - return ( - - Result: {result} - - ); -} +const App: React.FC = () => ( + + Result: {result} + +); + +export default App; const styles = StyleSheet.create({ container: {