import { FC } from "react"; import styled from "styled-components"; import "./style.scss"; const Button: FC<{ className?: string }> = ({ className = "" }) => ( Hello from app2 ); export default Button; const StyledButton = styled.button` font-family: JeanSunHo; color: red; font-size: 50px; height: 80px; `;