1.82.0 • Published 9 months ago
@funnelchat-dev/frontend-layout v1.82.0
Frontend Layout - ff
Installation
With npm:
npm install frontend-layout
Components
Loader
import { FunnelchatLoader } from '@funnelchat-dev/frontend-layout';
import '@funnelchat-dev/frontend-layout/dist/style.css';
export function App() {
return <FunnelchatLoader />;
}
Layout
import { FunnelchatLayout } from '@funnelchat-dev/frontend-layout';
import '@funnelchat-dev/frontend-layout/dist/style.css';
export function App() {
return (
<main>
<FunnelchatLayout userName={'Alejandro Sanchez'} userImg={''}>
<h1> Content </h1>
</FunnelchatLayout>
</main>
);
}
Modal Manager
import { FunnelchatModalManager } from '@funnelchat-dev/frontend-layout';
import '@funnelchat-dev/frontend-layout/dist/style.css';
// width and height is with px
// Example
export function App() {
const [open, setOpen] = useState(false);
return (
<main>
<FunnelchatModalManager
width="400px"
height="400px"
isOpen={open}
onClose={() => setOpen(false)}>
<h1> Content </h1>
</FunnelchatModalManager>
<button onClick={() => setOpen(true)}> Open Modal </button>
</main>
);
}
404
import { FunnelchatError404 } from '@funnelchat-dev/frontend-layout';
import '@funnelchat-dev/frontend-layout/dist/style.css';
export function App() {
return <FunnelchatError404 />;
}
500
import { FunnelchatError500 } from '@funnelchat-dev/frontend-layout';
import '@funnelchat-dev/frontend-layout/dist/style.css';
export function App() {
return <FunnelchatError500 />;
}
1.82.0
9 months ago
1.81.0
9 months ago
1.79.0
9 months ago
1.78.0
10 months ago
1.77.0
10 months ago
1.70.0
10 months ago
1.71.0
10 months ago
1.72.0
10 months ago
1.73.0
10 months ago
1.74.0
10 months ago
1.75.0
10 months ago
1.76.0
10 months ago
1.69.0
10 months ago
1.68.0
10 months ago
1.67.0
10 months ago
1.66.0
10 months ago
1.65.0
10 months ago
1.64.0
10 months ago
1.63.0
10 months ago
1.62.0
10 months ago
1.61.0
10 months ago
1.59.0
10 months ago
1.57.0
10 months ago
1.56.0
10 months ago
1.55.0
10 months ago
1.54.0
10 months ago
1.53.0
11 months ago
1.52.0
11 months ago
1.51.0
11 months ago
1.50.0
11 months ago
1.49.0
11 months ago
1.48.0
11 months ago
1.47.0
11 months ago
1.46.0
11 months ago
1.45.0
11 months ago
1.44.0
12 months ago
1.43.0
12 months ago
1.42.0
12 months ago
1.41.0
12 months ago
1.40.0
12 months ago
1.39.0
12 months ago
1.38.0
12 months ago
1.37.0
12 months ago
1.36.0
12 months ago
1.35.0
12 months ago
1.34.0
12 months ago
1.33.0
1 year ago
1.32.0
1 year ago
1.31.0
1 year ago