pretty, lint, type check

This commit is contained in:
danis
2023-12-01 15:22:45 +01:00
parent 7167b49edc
commit 183dee193c
5 changed files with 96 additions and 92 deletions
+8 -12
View File
@@ -1,21 +1,17 @@
import React from "react";
import { View } from "react-native";
import SearchBarComponent from "../../components/V2/SearchBar";
import React from 'react';
import { View } from 'react-native';
import SearchBarComponent from '../../components/V2/SearchBar';
// search with all parameters from search bar function
// return to search bar auto completion thing
export class SearchQueryObject {
}
const SearchView = () => {
return (
<View style={{ display: 'flex', flexDirection: 'column', padding: 3 }} >
<SearchBarComponent query={"undefined"} />
<View style={{ display: 'flex', flexDirection: 'column', padding: 3 }}>
<SearchBarComponent />
</View>
)
}
);
};
export default SearchView;
export default SearchView;