Merge pull request #45 from ecraig12345/titles

Add step number and demo/exercise to headers
This commit is contained in:
Elizabeth Craig 2019-02-28 11:51:46 -08:00 коммит произвёл GitHub
Родитель dad1979bf8 6e583f7fc0
Коммит cd299a7e94
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
23 изменённых файлов: 23 добавлений и 23 удалений

Просмотреть файл

@ -5,7 +5,7 @@
</head>
<body>
<header>
<h1>todos</h1>
<h1>todos - step1-02 exercise</h1>
<div class="addTodo">
<input class="textfield" placeholder="add todo" />
<button class="submit">Add</button>

Просмотреть файл

@ -5,7 +5,7 @@
</head>
<body>
<header>
<h1>todos</h1>
<h1>todos - step1-02 final</h1>
<div class="addTodo">
<input class="textfield" placeholder="add todo" />
<button class="submit">Add</button>

Просмотреть файл

@ -5,7 +5,7 @@
</head>
<body>
<header>
<h1>todos</h1>
<h1>todos - step1-03 demo</h1>
<div class="addTodo">
<input class="textfield" placeholder="add todo" />
<button class="submit">Add</button>

Просмотреть файл

@ -5,7 +5,7 @@
</head>
<body>
<header>
<h1>todos</h1>
<h1>todos - step1-03 exercise</h1>
<div class="addTodo">
<input class="textfield" placeholder="add todo" />
<button onclick="addTodo()" class="submit">Add</button>

Просмотреть файл

@ -5,7 +5,7 @@
</head>
<body>
<header>
<h1>todos</h1>
<h1>todos - step1-03 final</h1>
<div class="addTodo">
<input class="textfield" placeholder="add todo" />
<button onclick="addTodo()" class="submit">Add</button>

Просмотреть файл

@ -4,7 +4,7 @@ export class TodoHeader extends React.Component {
render() {
return (
<header>
<h1>todos</h1>
<h1>todos - step1-05 exercise</h1>
<div className="addTodo">
<input className="textfield" placeholder="add todo" />
<button className="submit">Add</button>

Просмотреть файл

@ -4,7 +4,7 @@ export class TodoHeader extends React.Component {
render() {
return (
<header>
<h1>todos</h1>
<h1>todos - step1-05 final</h1>
<div className="addTodo">
<input className="textfield" placeholder="add todo" />
<button className="submit">Add</button>

Просмотреть файл

@ -10,7 +10,7 @@ export class TodoHeader extends React.Component<any, any> {
const { filter } = this.props;
return (
<header>
<h1>todos</h1>
<h1>todos - step1-06 demo</h1>
<div className="addTodo">
<input className="textfield" placeholder="add todo" />
<button className="submit">Add</button>

Просмотреть файл

@ -11,7 +11,7 @@ export class TodoHeader extends React.Component<any, any> {
return (
<header>
<h1>todos</h1>
<h1>todos - step1-06 exercise</h1>
<div className="addTodo">
<input value={this.state.labelInput} onChange={this._onChange} className="textfield" placeholder="add todo" />
<button className="submit">Add</button>

Просмотреть файл

@ -11,7 +11,7 @@ export class TodoHeader extends React.Component<any, any> {
return (
<header>
<h1>todos</h1>
<h1>todos - step1-06 final</h1>
<div className="addTodo">
<input value={this.state.labelInput} onChange={this._onChange} className="textfield" placeholder="add todo" />
<button className="submit">Add</button>

Просмотреть файл

@ -11,7 +11,7 @@ export class TodoHeader extends React.Component<any, any> {
const { filter } = this.props;
return (
<header>
<h1>todos</h1>
<h1>todos - step1-07 demo</h1>
<div className="addTodo">
<input value={this.state.labelInput} onChange={this._onChange} className="textfield" placeholder="add todo" />
<button className="submit">Add</button>

Просмотреть файл

@ -11,7 +11,7 @@ export class TodoHeader extends React.Component<any, any> {
const { filter } = this.props;
return (
<header>
<h1>todos</h1>
<h1>todos - step1-07 exercise</h1>
<div className="addTodo">
<input value={this.state.labelInput} onChange={this._onChange} className="textfield" placeholder="add todo" />
<button className="submit">Add</button>

Просмотреть файл

@ -21,7 +21,7 @@ export class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState
const { filter, setFilter } = this.props;
return (
<header>
<h1>todos</h1>
<h1>todos - step1-07 final</h1>
<div className="addTodo">
<input value={this.state.labelInput} onChange={this._onChange} className="textfield" placeholder="add todo" />
<button onClick={this._onAdd} className="submit">

Просмотреть файл

@ -22,7 +22,7 @@ export class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState
return (
<Stack>
<Stack horizontal horizontalAlign="center">
<Text variant="xxLarge">todos</Text>
<Text variant="xxLarge">todos - step2-02 demo</Text>
</Stack>
<Stack horizontal>

Просмотреть файл

@ -5,7 +5,7 @@ export class TodoHeader extends React.Component<{}, {}> {
render() {
return (
<div>
<h1>todos</h1>
<h1>todos - step2-02 exercise</h1>
<input className="textfield" placeholder="add todo" />
<button className="button add">Add</button>
<div className="filter">

Просмотреть файл

@ -22,7 +22,7 @@ export class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState
return (
<Stack gap={10}>
<Stack horizontal horizontalAlign="center">
<Text variant="xxLarge">todos</Text>
<Text variant="xxLarge">todos - step2-03 demo</Text>
</Stack>
<Stack horizontal gap={10}>

Просмотреть файл

@ -22,7 +22,7 @@ export class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState
return (
<Stack gap={10}>
<Stack horizontal horizontalAlign="center">
<Text variant="xxLarge">todos</Text>
<Text variant="xxLarge">todos - step2-03 exercise</Text>
</Stack>
<Stack horizontal gap={10}>

Просмотреть файл

@ -22,7 +22,7 @@ class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState> {
return (
<Stack gap={10}>
<Stack horizontal horizontalAlign="center">
<Text variant="xxLarge">todos</Text>
<Text variant="xxLarge">todos - step2-07 demo</Text>
</Stack>
<Stack horizontal gap={10}>

Просмотреть файл

@ -23,7 +23,7 @@ export class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState
return (
<Stack gap={10}>
<Stack horizontal horizontalAlign="center">
<Text variant="xxLarge">todos</Text>
<Text variant="xxLarge">todos - step2-07 exercise</Text>
</Stack>
<Stack horizontal gap={10}>

Просмотреть файл

@ -24,7 +24,7 @@ class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState> {
return (
<Stack gap={10}>
<Stack horizontal horizontalAlign="center">
<Text variant="xxLarge">todos</Text>
<Text variant="xxLarge">todos - step2-08 demo</Text>
</Stack>
<Stack horizontal gap={10}>

Просмотреть файл

@ -24,7 +24,7 @@ class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState> {
return (
<Stack gap={10}>
<Stack horizontal horizontalAlign="center">
<Text variant="xxLarge">todos</Text>
<Text variant="xxLarge">todos - step2-08 exercise</Text>
</Stack>
<Stack horizontal gap={10}>

Просмотреть файл

@ -24,7 +24,7 @@ class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState> {
return (
<Stack gap={10}>
<Stack horizontal horizontalAlign="center">
<Text variant="xxLarge">todos</Text>
<Text variant="xxLarge">todos - step2-09 demo</Text>
</Stack>
<Stack horizontal gap={10}>

Просмотреть файл

@ -24,7 +24,7 @@ class TodoHeader extends React.Component<TodoHeaderProps, TodoHeaderState> {
return (
<Stack gap={10}>
<Stack horizontal horizontalAlign="center">
<Text variant="xxLarge">todos</Text>
<Text variant="xxLarge">todos - step2-09 exercise</Text>
</Stack>
<Stack horizontal gap={10}>