17 lines
402 B
TypeScript
17 lines
402 B
TypeScript
import React from 'react';
|
|
|
|
const EmptyPage = () => {
|
|
return (
|
|
<div className="grid">
|
|
<div className="col-12">
|
|
<div className="card">
|
|
<h4>Empty Page</h4>
|
|
<p>Use this page to start from scratch and place your custom content.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default EmptyPage;
|