19 lines
393 B
JavaScript
19 lines
393 B
JavaScript
import BackupForm from './components/BackupForm';
|
|
import RestoreForm from './components/RestoreForm';
|
|
import './App.css';
|
|
|
|
|
|
function App() {
|
|
return (
|
|
<div className="snapix-container">
|
|
<h1 className="snapix-title">🚀 Snapix Dashboard</h1>
|
|
<div className="snapix-dashboard">
|
|
<BackupForm />
|
|
<RestoreForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|