And by this, you can also rename it to something uppercase if you want, using an escaped identifier:
module WithRecord = {
type props = {name: string}
let \"WithRecord\" = props => {
React.string(props.name)
}
let make = \"WithRecord\"
}