mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-24 23:19:39 -05:00
* Initial * Add images * Tweaks * Proper sized bg image and weapons * Stage bg picker * Outlined weapon images for planner * First version * Lint * Add alt and title to weapon
10 lines
170 B
TypeScript
10 lines
170 B
TypeScript
import * as React from "react";
|
|
|
|
export function useForceRefreshOnMount() {
|
|
const [, setOne] = React.useState(0);
|
|
|
|
React.useEffect(() => {
|
|
setOne(1);
|
|
}, []);
|
|
}
|