docs(quickstart): remove instruction (#2261)
This commit is contained in:
parent
42257e4a22
commit
a9e7781844
|
@ -190,6 +190,12 @@ block install-packages
|
|||
|
||||
Every Angular application has at least one module: the _root module_, named `AppModule` here.
|
||||
|
||||
**Create #{_an} #{_appDir} subfolder** off the project root directory:
|
||||
|
||||
code-example.
|
||||
mkdir #{_appDir}
|
||||
|
||||
:marked
|
||||
Create the file `app/app.module.ts` with the following content:
|
||||
|
||||
+makeExample('app/app.module.1.ts')(format='.')
|
||||
|
@ -221,15 +227,10 @@ h1#root-component Step !{step++}: Create a component and add it to your applicat
|
|||
Components are the basic building blocks of Angular applications. A component controls a portion
|
||||
of the screen—a *view*—through its associated template
|
||||
|
||||
**Create #{_an} #{_appDir} subfolder** off the project root directory:
|
||||
|
||||
code-example.
|
||||
mkdir #{_appDir}
|
||||
|
||||
a#app-component
|
||||
p.
|
||||
#[b Create the component file]
|
||||
#[code #[+adjExPath('app/app.component.ts')]] (in this newly created directory) with the following content:
|
||||
#[code #[+adjExPath('app/app.component.ts')]] with the following content:
|
||||
|
||||
+makeExample('app/app.component.ts')
|
||||
|
||||
|
|
Loading…
Reference in New Issue