1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-18 17:29:43 +07:00

fix: warning about modules with names differing in casing (#148)

This commit is contained in:
Antoine Chalifour 2019-10-02 16:46:29 +02:00 committed by Priscila Oliveira
parent 584f4c141e
commit e14729006a

View File

@ -22,7 +22,7 @@ renderApp(App);
// @ts-ignore
if (module.hot) {
// @ts-ignore
module.hot.accept('./app', () => {
module.hot.accept('./App', () => {
renderApp(App);
});
}