forked from M-Labs/web2019
6 lines
218 B
React
6 lines
218 B
React
|
import React from "react";
|
||
|
|
||
|
export function UnimplementedComponent(type, id) {
|
||
|
//console.error("Missing component with type:", type)
|
||
|
return <div key={type + id} style={{background: "red"}}>UNIMPLEMENTED</div>
|
||
|
}
|