react-console-ui
v0.0.1
Published
The react-console-ui package offers a simple console UI component for displaying logs in React applications. Designed to improve developer experience, this package provides various types of logs like info, warning, error, and success, along with features
Downloads
10
Maintainers
Readme
React Console UI
Description
react-console-ui
is a simple console UI component for displaying logs in React applications. It handles various types of logs such as info, warning, error, and success, and offers features like expandable rows for duplicate logs.
Installation
npm install react-console-ui
How to Use
First, import ConsoleUI into your React component.
import ConsoleUI from 'react-console-ui';
Then, use it in your component by passing an array of log objects to the logs prop.
const logs = [
{ type: 'info', message: 'Info message', details: 'More details' },
{ type: 'warning', message: 'Warning message', details: 'Some warning details' },
{ type: 'error', message: 'Error occurred', details: 'Error details here' },
{ type: 'success', message: 'Success!', details: 'Action was successful' },
];
<ConsoleUI logs={logs} />
Log Object
Each log object should contain:
- type: The type of log ("info", "warning", "error", "success").
- message: The main log message.
- details: Additional details for the log.