This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Index } from './Index'; | |
| import { BaseLayout } from './BaseLayout'; | |
| <Route path="/" component={BaseLayout} hideHeader="false" hideFooter="false"> | |
| <IndexRoute component={Index}/> | |
| </Route> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const path = require('path'); | |
| const webpack = require('webpack'); | |
| const pkg = require('./package.json'); | |
| const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
| const InlineManifestWebpackPlugin = require('inline-manifest-webpack-plugin'); | |
| const APP_SRC_PATH = path.resolve(__dirname, 'mobile/frontend'); | |
| const APP_DIST_PATH = path.resolve(__dirname, 'static/mobile/dist'); | |
| const STATIC_PATH = path.resolve(__dirname, 'static'); | |
| const jsTemplate = path.resolve(APP_SRC_PATH, 'frontend-js.ejs'); | |
| const cssTemplate = path.resolve(APP_SRC_PATH, 'frontend-css.ejs'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub LoopThroughSheets() | |
| Dim ws As Worksheet | |
| Dim endDate As Date | |
| endDate = DateValue("2016/10/09") | |
| For Each ws In ActiveWorkbook.Worksheets | |
| If ws.Name <> "汇总" Then | |
| For Each rw In ws.Rows | |
| If rw.Cells(1).Value = "" Then | |
| Exit For |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"/> | |
| <title>Hello React!</title> | |
| <style> | |
| li.todo-item.completed span { | |
| text-decoration: line-through; | |
| } | |
| </style> |
NewerOlder