|
1 | 1 | import React, {Component} from 'react'; |
2 | 2 | import {Col, Container, Row} from "reactstrap"; |
3 | | -import {Link} from "react-router-dom"; |
4 | 3 | import {Route, Switch} from "react-router"; |
5 | 4 | import ProgrammingLanguageDefense from "./blog/ProgrammingLanguageDefense"; |
6 | 5 | import DesignFlaws from "./blog/DesignFlaws"; |
@@ -43,29 +42,29 @@ class Blog extends Component { |
43 | 42 | <Col> |
44 | 43 | <ul> |
45 | 44 | <li> |
46 | | - <Link to="/blog/in-defense-of-programming-languages/"> |
| 45 | + <a href="https://blog.flix.dev/blog/in-defense-of-programming-languages/"> |
47 | 46 | In Defense of Programming Languages |
48 | | - </Link> |
| 47 | + </a> |
49 | 48 | </li> |
50 | 49 | <li> |
51 | | - <Link to="/blog/taming-impurity-with-polymorphic-effects/"> |
| 50 | + <a href="https://blog.flix.dev/blog/taming-impurity-with-polymorphic-effects/"> |
52 | 51 | Taming Impurity with Polymorphic Effects |
53 | | - </Link> |
| 52 | + </a> |
54 | 53 | </li> |
55 | 54 | <li> |
56 | | - <Link to="/blog/naming-functional-and-destructive-operations/"> |
| 55 | + <a href="https://blog.flix.dev/blog/naming-functional-and-destructive-operations/"> |
57 | 56 | Naming Functional and Destructive Operations |
58 | | - </Link> |
| 57 | + </a> |
59 | 58 | </li> |
60 | 59 | <li> |
61 | | - <Link to="/blog/redundancies-as-compile-time-errors/"> |
| 60 | + <a href="https://blog.flix.dev/blog/redundancies-as-compile-time-errors/"> |
62 | 61 | Redundancies as Compile-Time Errors |
63 | | - </Link> |
| 62 | + </a> |
64 | 63 | </li> |
65 | 64 | <li> |
66 | | - <Link to="/blog/design-flaws-in-flix/"> |
| 65 | + <a href="https://blog.flix.dev/blog/design-flaws-in-flix/"> |
67 | 66 | Design Flaws in the Flix Programming Language |
68 | | - </Link> |
| 67 | + </a> |
69 | 68 | </li> |
70 | 69 | </ul> |
71 | 70 | </Col> |
|
0 commit comments