@hudoro/story-record
v0.0.1-beta.7
Published
sotry-record component for Hudoro UI
Keywords
Readme
Hudoro Story Record
ITS ME STORY RECORD!!!
Package instalation
Instal package using pnpm
pnpm add @hudoro/story-recordInstal package using yarn
yarn add @hudoro/story-recordInstal package using npm
npm i @hudoro/story-recordUsage/Examples
import {StoryRecord, StoryRecordContainer} from "@hudoro/story-record";
const App = () => {
return (
<StoryRecordContainer>
<StoryRecord style={{padding: 10}}>testing</StoryRecord>
<StoryRecord>testing</StoryRecord>
<StoryRecord lastRecord>testing</StoryRecord>
</StoryRecordContainer>
);
};
ReactDOM.createRoot(document.getElementById("app")!).render(<App />);
