.prettier settings

// .prettierrc
{
  "singleQuote": false,
  "semi": true,
  "useTabs": false,
  "tabWidth": 2,
  "trailingComma": "es5",
  "printWidth": 80
}
// src/components/test/test.style.js
import { styled } from "styled-components";

export const TestContainer = styled.div`
  width: 10rem;
  height: 10rem;
  background-color: red;
`;
// src/components/test/Test.jsx
// *로 불러오고 as로 별칭을 St로 사용한다.
import * as St from "./test.style";

function Test() {
          // St.스타일링된 컴포넌트 명으로 사용
  return <St.TestContainer>Test</St.TestContainer>;
}

export default Test;