name change

This commit is contained in:
snoop 2017-07-10 20:24:14 +09:00
parent 399e5de626
commit 591831a317
6 changed files with 10 additions and 9 deletions

View File

@ -2,11 +2,11 @@ import * as React from 'react';
import { Switch } from 'react-router'; import { Switch } from 'react-router';
import { Link, Route } from 'react-router-dom'; import { Link, Route } from 'react-router-dom';
import { DropDownTest } from './containers/test/Sementic001'; import { TopBar } from './containers/test/TopBar';
import { Page8 } from './containers/test/Page8'; import { SignUp } from './containers/test/SignUp';
import { SignIn } from './containers/test/Page9'; import { SignIn } from './containers/test/SignIn';
import { PWChange } from './containers/test/Page11'; import { PWChange } from './containers/test/PWChange';
import { ProbeDown } from './containers/test/Page17'; import { ProbeDown } from './containers/test/ProbeDown';
import { Components } from './containers/test/Components'; import { Components } from './containers/test/Components';
@ -25,8 +25,8 @@ export class Routes extends React.Component<any, any> {
<li><Link to='/test14' >Insanity</Link></li> <li><Link to='/test14' >Insanity</Link></li>
<Switch> <Switch>
<Route exact path='/test' component={DropDownTest} /> <Route exact path='/test' component={TopBar} />
<Route exact path='/test2' component={Page8} /> <Route exact path='/test2' component={SignUp} />
<Route exact path='/test3' component={SignIn} /> <Route exact path='/test3' component={SignIn} />
<Route exact path='/test4' component={PWChange} /> <Route exact path='/test4' component={PWChange} />
<Route exact path='/test5' component={ProbeDown} /> <Route exact path='/test5' component={ProbeDown} />

View File

@ -41,6 +41,7 @@ const { activeItem } = this.state
<Menu.Item name='Fedora' active={activeItem === 'Fedora'} onClick={this.handleItemClick} /> <Menu.Item name='Fedora' active={activeItem === 'Fedora'} onClick={this.handleItemClick} />
</Menu> </Menu>
</Grid.Column> </Grid.Column>
<Grid.Column stretched width={12}> <Grid.Column stretched width={12}>
<Segment> <Segment>

View File

@ -16,7 +16,7 @@ const options = [{ key: 'southkorea', value: '82', text: 'South Korea(82)' },
{ key: 'unitedstates', value: '1', text: 'United States(1)' }] { key: 'unitedstates', value: '1', text: 'United States(1)' }]
export class Page8 extends React.Component<any, any> { export class SignUp extends React.Component<any, any> {
constructor(props: any, context: any) { constructor(props: any, context: any) {
super(props, context); super(props, context);

View File

@ -29,7 +29,7 @@ const options = [
] ]
export class DropDownTest extends React.Component<any, any> { export class TopBar extends React.Component<any, any> {
constructor(props: any, context: any) { constructor(props: any, context: any) {
super(props, context); super(props, context);