Name | Notes | Video Sample(s) |
---|---|---|
Not Just Bikes | I like all of his videos. The Strong Towns series is very educational. I would recommend going through the whole series. | https://www.youtube.com/watch?v=y_SXXTBypIg&list=PLJp5q-R0lZ0_FCUbeVWK6OGLN69ehUTVa&index=2 |
Yet Another Urbanist | Snarky guy that is direct, to the point, and speaks with a nasaly voice. I love all of his videos, but some can be very negative and feel like a bummer. | https://www.youtube.com/watch?v=HGjs1iStqmc |
Rob Robinson | Funny gen-z guy that paints his nails and makes his case very well. Entertaining videos. | https://www.youtube.com/watch?v=8m4xzQ2_M0g |
Alan Fisher (Armchair Urbanist) | Snarky funny guy in Philadelphia. Likes trains. | https://www.youtube.com/watch?v=hbp8AesNC3w |
Andrewism | This isn't an urbanist channel, but some of his videos are. His channel is mostly a kind of leftist slam poetry. I recommend his SolarPunk video in addition to th |
This file contains 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 from "react"; | |
import { Button, Modal, ModalBody, ModalFooter, ModalHeader } from "reactstrap"; | |
interface Props { | |
isOpen: boolean; | |
setIsOpen: React.Dispatch<React.SetStateAction<boolean>>; | |
title: string; | |
buttonColor?: string; | |
onConfirm: () => any; | |
buttonText?: string; |