Martin Dimitrov eb7d37a01c
All checks were successful
Build and push image for doorman / docker (push) Successful in 56s
Build and push image for doorman / deploy-portainer (push) Successful in 26s
add UI flow for the buzzer steps
2024-03-02 14:17:14 -08:00

13 lines
172 B
TypeScript

import React, { useState } from 'react';
import { Outlet } from 'react-router-dom';
function App() {
return (
<>
<Outlet/>
</>
);
}
export default App;