import Odontogram from "./components/odontogram";

function OdontoAukde(props){
  return(
    <Odontogram 
      tooth={(label, zone, id) => {
        props.tooth(label, zone, id)
      }}
      rtooth={(id) => {
        props.rtooth(id)
      }}
    />
  )
}

export default OdontoAukde;