mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-13 14:36:09 +00:00
10 lines
No EOL
167 B
JavaScript
10 lines
No EOL
167 B
JavaScript
import React from 'react';
|
|
import './ErrorBanner.css';
|
|
|
|
export function ErrorBanner({children}) {
|
|
return (
|
|
<div className="errorBanner">
|
|
{children}
|
|
</div>
|
|
)
|
|
} |