Stencil과 Respect 및 Angular는 어떻게 다릅니까? Angular에 익숙하고 React의 기본을 알고 있습니다.스텐실 문서를 조사하던 중 스텐실 구성요소가 둘 다 있다는 걸 알아냈어요@Component데코레이터와render()방법 - 컴포넌트.tsx import { Component, Prop } from '@stencil/core'; @Component({ tag: 'my-first-component', styleUrl: 'my-first-component.scss' }) export class MyComponent { // Indicate that name should be a public property on the component @Prop() firstName: string; ..