14 lines
220 B
TypeScript
14 lines
220 B
TypeScript
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;
|