- Remove unused BevyScene and related dependencies.

- Refactor `InstallButton` and relocate it to `install/`.
- Update `Toolbar` imports to reflect the new `InstallButton` structure.
- Introduce `handleInstall` functionality for PWA installation prompt handling.
This commit is contained in:
geoffsee
2025-07-17 14:04:47 -04:00
parent 4edee1e191
commit bd71bfcad3
5 changed files with 69 additions and 94 deletions

View File

@@ -0,0 +1,7 @@
import React, { useEffect, useState } from 'react';
function InstallButton() {
return <button onClick={handleInstall}>Install App</button>;
}
export default InstallButton;