mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-18 20:09:25 +00:00
12 lines
265 B
TypeScript
12 lines
265 B
TypeScript
import React from "react";
|
|
import styled from "styled-components";
|
|
|
|
export const HeaderProfileBox = () => {
|
|
return <ProfileArea>HeaderProfileBox</ProfileArea>;
|
|
};
|
|
|
|
const ProfileArea = styled.div`
|
|
display: flex;
|
|
place-items: stretch;
|
|
place-items: center;
|
|
`;
|