website/frontend/src/Debate/Arguments/Gender/TransPeople.elm
2024-11-16 18:34:05 -06:00

54 lines
1.3 KiB
Elm

module Debate.Arguments.Gender.TransPeople exposing (..)
import Debate.Types exposing (..)
argumentTransPeople : Argument
argumentTransPeople =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
, propositionSummary = "Summary"
, proofLink = ""
, definitionTable =
[ { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
]
, conclusion = ""
, conclusionNotation = "()"
}
]
}