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 HTML_WEBPACK_PLUGIN = require('html-webpack-plugin'); | |
| const MERGE = require('webpack-merge'); | |
| const PUG = require('./webpack/pug'); | |
| const DEVSERVER = require('./webpack/devserver'); | |
| const CSS = require('./webpack/css'); | |
| const FONTS = require('./webpack/fonts'); | |
| const IMAGES = require('./webpack/images'); | |
| const SPRITE_SVG = require('./webpack/svg-sprite'); |
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 React, {Component} from 'react'; | |
| import {withRouter} from 'react-router-dom'; | |
| import Header from "../components/header"; | |
| import axios from "axios"; | |
| import serialize from "form-serialize"; | |
| class Jurist extends Component { | |
| constructor(props) { |
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 React, {Component} from 'react'; | |
| import {withRouter} from 'react-router-dom'; | |
| import Header from "../components/header/header"; | |
| import axios from 'axios'; | |
| // let newarr = []; | |
| class News extends Component { |
NewerOlder