import { View, StyleSheet } from 'react-native' import { Skeleton } from './skeleton' export function SearchWorksSkeleton() { return ( {/* 搜索历史骨架 */} {[1, 2, 3, 4].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, }, })