mirror of
https://github.com/movie-web/movie-web.git
synced 2025-01-18 05:48:26 +00:00
10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
|
import React from 'react';
|
||
|
import './ErrorBanner.css';
|
||
|
|
||
|
export function ErrorBanner({children}) {
|
||
|
return (
|
||
|
<div class="errorBanner">
|
||
|
{children}
|
||
|
</div>
|
||
|
)
|
||
|
}
|