Home
last modified time | relevance | path

Searched refs:history (Results 1 – 4 of 4) sorted by relevance

/MusicFree/src/pages/searchPage/components/
H A DhistoryPanel.tsx26 const [history, setHistory] = useState<string[] | null>(null);
39 {history === null ? (
59 {history.length ? (
60 history.map(_ => (
62 key={`search-history-${_}`}
/MusicFree/src/core/
H A DmusicHistory.ts10 const history = await getStorage(musicHistorySheetId); constant
11 musicHistory.setValue(history ?? []);
/MusicFree/src/lib/react-native-vdebug/
H A Dindex.js63 history: [], property
113 history: res, property
261 const res = this.state.history.filter(f => {
265 this.state.history.splice(0, 0, this.state.commandValue);
269 history: this.state.history, property
273 Storage.save('react-native-vdebug@history', this.state.history);
282 const res = this.state.history.filter(f =>
/MusicFree/src/core/router/
H A Droutes.tsx17 import History from "@/pages/history";