import { View, StyleSheet } from 'react-native' import { Skeleton } from './skeleton' export function SearchTemplateSkeleton() { return ( {/* 搜索历史骨架 */} {[1, 2, 3, 4].map((item) => ( ))} {/* 探索更多骨架 */} {[1, 2, 3, 4, 5, 6].map((item) => ( ))} ) } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#090A0B', paddingHorizontal: 12, }, historySection: { paddingBottom: 32, }, historyHeader: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', }, historyTags: { flexDirection: 'row', flexWrap: 'wrap', gap: 4, marginTop: 16, }, historyTag: { marginBottom: 0, }, exploreSection: { marginTop: 0, }, exploreHeader: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', marginBottom: 16, }, exploreTags: { flexDirection: 'row', flexWrap: 'wrap', gap: 8, }, exploreTag: { marginBottom: 0, }, })