Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(workbench): fix documentation of part Getting Started #604

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions docs/site/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,31 @@ Open `app.config.ts` and register SCION Workbench providers. Added lines are mar
```
</details>

<details>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move it to the next section (Insert SCION Workbench Component) so we have modifications to all files (html, ts, scss) in a single section.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please also update the how-to-install-workbench.md file accordingly.

<summary><strong>Import SCION Workbench Component</strong></summary>
<br>

Open `app.component.ts` and import the SCION Workbench component. Added lines are marked with `[+]`.

```ts
import { Component } from '@angular/core';
[+] import { WorkbenchComponent } from '@scion/workbench';

@Component({
selector: 'app-root',
standalone: true,
imports: [
[+] WorkbenchComponent
],
templateUrl: './app.component.html',
styleUrl: './app.component.scss'
})
export class AppComponent {
title = 'workbench-getting-started';
}
```
</details>

<details>
<summary><strong>Insert SCION Workbench Component</strong></summary>
<br>
Expand Down
Loading