This is the Article Title that we want to call in another component
<h1 class="article-title">{{ articleTitle }}</h1>
@Input() articleTitle?: string;
Default.args = {
articleTitle: 'Hello World'
}
Here we call the button component
<man-article-title [articleTitle]="articleTitle"></man-article-title>
@Input() articleTitle?: string;
Default.args = {
articleTitle: 'Olvasási előzmények',
}