Use tabler-react-typescript, updated frontend deps

This commit is contained in:
Jamie Curnow
2021-07-04 16:11:55 +10:00
parent 0f6498603e
commit 4fbb354d54
16 changed files with 419 additions and 332 deletions

View File

@@ -0,0 +1,14 @@
import React from "react";
import styled from "styled-components";
const Root = styled.div`
display: flex;
flex-direction: column;
`;
function Settings() {
return <Root>Settings</Root>;
}
export default Settings;