mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
making some index.html changes to show demo & exercise
This commit is contained in:
20
index.html
20
index.html
@@ -69,28 +69,32 @@
|
|||||||
Setup, HTML, CSS, Javascript and Intro to React
|
Setup, HTML, CSS, Javascript and Intro to React
|
||||||
</li>
|
</li>
|
||||||
<li class="Tile">
|
<li class="Tile">
|
||||||
<a target="_blank" href="/step2-01/demo/" class="Tile-link">
|
<div class="Tile-link">
|
||||||
Step 1<br />
|
Step 1<br />
|
||||||
Typescript Basics
|
Typescript Basics
|
||||||
</a>
|
<div><a target="_blank" href="/step2-01/demo/">demo</a> | <a target="_blank" href="/step2-01/exercise/">exercise</a></div>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="Tile">
|
<li class="Tile">
|
||||||
<a target="_blank" href="/step2-02/demo/" class="Tile-link">
|
<div class="Tile-link">
|
||||||
Step 2<br />
|
Step 2<br />
|
||||||
UI Fabric
|
UI Fabric
|
||||||
</a>
|
<div><a target="_blank" href="/step2-02/demo/">demo</a> | <a target="_blank" href="/step2-02/exercise/">exercise</a></div>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="Tile">
|
<li class="Tile">
|
||||||
<a target="_blank" href="/step2-03/demo/" class="Tile-link">
|
<div class="Tile-link">
|
||||||
Step 3<br />
|
Step 3<br />
|
||||||
UI Fabric: Theming and Styling
|
UI Fabric: Theming and Styling
|
||||||
</a>
|
<div><a target="_blank" href="/step2-03/demo/">demo</a> | <a target="_blank" href="/step2-03/exercise/">exercise</a></div>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="Tile">
|
<li class="Tile">
|
||||||
<a target="_blank" href="/step2-04/" class="Tile-link">
|
<div class="Tile-link">
|
||||||
Step 4<br />
|
Step 4<br />
|
||||||
Testing with jest
|
Testing with jest
|
||||||
</a>
|
<div><a target="_blank" href="/step2-04/demo/">demo</a> | <a target="_blank" href="/step2-04/exercise/">exercise</a></div>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="Tile">
|
<li class="Tile">
|
||||||
<a target="_blank" href="/step2-05/" class="Tile-link">
|
<a target="_blank" href="/step2-05/" class="Tile-link">
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import { TodoList } from './TodoList';
|
|||||||
import { Store } from '../store';
|
import { Store } from '../store';
|
||||||
|
|
||||||
// TODO: Change me to another theme!
|
// TODO: Change me to another theme!
|
||||||
import { AzureCustomizationsLight } from '@uifabric/azure-themes';
|
import { TeamsCustomizations } from '@uifabric/theme-samples';
|
||||||
|
|
||||||
let index = 0;
|
let index = 0;
|
||||||
|
|
||||||
@@ -26,7 +26,7 @@ export class TodoApp extends React.Component<any, Store> {
|
|||||||
render() {
|
render() {
|
||||||
const { filter, todos } = this.state;
|
const { filter, todos } = this.state;
|
||||||
return (
|
return (
|
||||||
<Customizer {...AzureCustomizationsLight}>
|
<Customizer {...TeamsCustomizations}>
|
||||||
<Stack horizontalAlign="center">
|
<Stack horizontalAlign="center">
|
||||||
<Stack style={{ width: 400 }} gap={25} className={className}>
|
<Stack style={{ width: 400 }} gap={25} className={className}>
|
||||||
<TodoHeader addTodo={this._addTodo} setFilter={this._setFilter} filter={filter} />
|
<TodoHeader addTodo={this._addTodo} setFilter={this._setFilter} filter={filter} />
|
||||||
|
|||||||
Reference in New Issue
Block a user