Änderungen

Zur Navigation springen Zur Suche springen
393 Bytes hinzugefügt ,  11:51, 11. Jul. 2022
Zeile 242: Zeile 242:  
Siehe  
 
Siehe  
 
* https://ant.design/docs/react/introduce
 
* https://ant.design/docs/react/introduce
 +
 +
====== Einbindung in React / Typescript-Projekt ======
 +
 +
Ant.Design wird mit
 +
  npm install --save antd
 +
dem Create-React-App-Projekt hinzugefügt.
 +
 +
Im Code muss man einerseits das CSS einbinden:
 +
  import "antd/dist/antd.css";
 +
 +
Andererseits benötigt man auch den JavaScript-Code, z.B. für das Input-Element:
 +
  import {Input} from "antd";
 +
  ...
 +
  return (<Input placeholder="Hallo" />);
 +
  ...
    
===== Bootstrap =====
 
===== Bootstrap =====

Navigationsmenü