14 lines
232 B
TypeScript
14 lines
232 B
TypeScript
import React from "react";
|
|
|
|
import styled from "styled-components";
|
|
|
|
const Root = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
`;
|
|
|
|
function Certificates() {
|
|
return <Root>Certificates</Root>;
|
|
}
|
|
|
|
export default Certificates;
|