A QR based attendance and contact tracing system.
import React from 'react';
import ReactDOM from 'react-dom';
import './index.scss';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root'),
);
@import "./sass/variables";
body, html {
font-family: "Inter", sans-serif;
font-weight: 600;
font-size: 18px;
background-color: $background;
text-align: left;
line-height: 1.375;
margin:0;
}
.row {
margin: 0;
}
html,
body {
margin: 0;
padding: 0;
}
import './App.scss';
function App() {
return (
<div className="App">
<h1>Here App</h1>
</div>
);
}
export default App;