김지훈

Merge branch 'master' of https://github.com/GodofKim/3line

1001 Bytes | W: | H:

1.99 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
1 -<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="shortcut icon" href="/favicon.ico"><title>React App</title><link href="/static/css/main.9a0fe4f1.css" rel="stylesheet"></head><body><div id="root"></div><script type="text/javascript" src="/static/js/main.1f67ab41.js"></script></body></html>
...\ No newline at end of file ...\ No newline at end of file
1 +<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="shortcut icon" href="/favicon.ico"><title>React App</title><link href="/static/css/main.9ab837b9.css" rel="stylesheet"></head><body><div id="root"></div><script type="text/javascript" src="/static/js/main.c46be0d7.js"></script></body></html>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -6,9 +6,14 @@ ...@@ -6,9 +6,14 @@
6 "version": "1.0", 6 "version": "1.0",
7 7
8 "browser_action": { 8 "browser_action": {
9 - "default_icon": "favicon.ico", 9 + "default_icon": "icon.png",
10 "default_popup": "index.html" 10 "default_popup": "index.html"
11 }, 11 },
12 + "icons": {
13 + "16": "./icons/icon16.png",
14 + "48": "./icons/icon48.png",
15 + "128": "./icons/icon128.png"
16 + },
12 "permissions": [ 17 "permissions": [
13 "tabs", 18 "tabs",
14 "<all_urls>" 19 "<all_urls>"
......
1 +.App{text-align:center}.App-logo{-webkit-animation:App-logo-spin infinite 20s linear;animation:App-logo-spin infinite 20s linear;height:80px}.App-header{background-color:#222;height:150px;padding:20px;color:#fff}.App-intro{font-size:large}@-webkit-keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}body{margin:0;padding:0;font-family:sans-serif;width:400px;min-height:250px}
2 +/*# sourceMappingURL=main.9ab837b9.css.map*/
...\ No newline at end of file ...\ No newline at end of file
1 +{"version":3,"sources":[],"names":[],"mappings":"","file":"static/css/main.9ab837b9.css","sourceRoot":""}
...\ No newline at end of file ...\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
1 import React, { Component } from 'react'; 1 import React, { Component } from 'react';
2 -import logo from './logo.svg'; 2 +import logo from './logo.png';
3 import './App.css'; 3 import './App.css';
4 4
5 class App extends Component { 5 class App extends Component {
...@@ -7,7 +7,7 @@ class App extends Component { ...@@ -7,7 +7,7 @@ class App extends Component {
7 return ( 7 return (
8 <div className="App"> 8 <div className="App">
9 <div className="App-header"> 9 <div className="App-header">
10 - <img src={logo} className="App-logo" alt="logo" /> 10 + <img src={logo} className="App-logo" alt="logo"/>
11 <h2>Welcome to 3Line</h2> 11 <h2>Welcome to 3Line</h2>
12 </div> 12 </div>
13 <p className="App-intro"> 13 <p className="App-intro">
......
1 # 3line 1 # 3line
2 +
3 +##Server installation
4 +
5 +###For korean word analyzing
6 +```
7 +// go to Server directory and type this into command
8 +$ node_modules/mecab-ya/bin/install-mecab ko
9 +```
10 +
11 +it takes quite long time.
......