How to use the @talend/react-components/lib/Skeleton.TYPES function in @talend/react-components

To help you get started, we’ve selected a few @talend/react-components examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Talend / ui / packages / forms / src / FormSkeleton.js View on Github external
export default function FormSkeleton() {
	return (
		<div aria-busy="">
			<div>
				
				
				
				
				
				
				
				
			</div>
			<div>
				<div>
					
					
				</div>
			</div>
		</div>
	);
}
github Talend / ui / packages / datagrid / src / components / DataGrid / DataGrid.component.js View on Github external
render() {
		let content;
		if (this.props.loading) {
			content = ;
		} else {
			content = ;
		}

		return (
			<div>
				{content}</div>