import React from "react"
import { Link } from "react-router"
const ThreadsCategoryPicker = ({
allItems,
parentUrl,
category,
categories,
list,
}) => (
-
{allItems}
{categories.map((choice) => (
-
label
{choice.name}
))}
)
export default ThreadsCategoryPicker