@ottabase/hello-world
v1.0.1
Published
A simple hello world React component package
Maintainers
Readme
@ottabase/hello-world
A simple, customizable React component that displays a friendly greeting message with beautiful default styling.
Installation
npm install @ottabase/hello-worldUsage
Basic Usage
import React from 'react';
import { HelloBox } from '@ottabase/hello-world';
function App() {
return (
<div>
<HelloBox />
</div>
);
}
export default App;