为什么javafx中的面板无法加入一些节点?

为什么会报出“The method add(Node) in the type List is not applicable for the arguments (Label)”(add)报错了

Pane pane=new Pane();
        Label labell=new Label("标签");
         pane.getChildren().add(labell);

求大佬们看看这是咋回事啊

https://blog.csdn.net/qq_29662295/article/details/80139434