xenial-black
xenial-black•7mo ago

refine hr example

where can i find the source code for refine hr application ?
9 Replies
kapa.ai
kapa.ai•7mo ago
Hi @dc_alexyt. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- I'm sorry, but the provided extracts do not contain information or a link to the source code for a Refine HR application. However, Refine is a versatile framework that can be used to build a variety of applications, including HR applications. You can check out the Refine GitHub repository (https://github.com/refinedev/refine) for examples of applications built with Refine. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
xenial-black
xenial-black•7mo ago
@kapa.ai I am trying to find the templates of rifine can you help me out navigate?
kapa.ai
kapa.ai•7mo ago
Let me check the knowledge base for you. One moment! :books: ---------------------- Sure, you can find the templates for Refine on the templates page (https://refine.dev/templates/) of the Refine website. This page contains real-life examples of applications built using Refine. You can choose any example to open and explore it in an online editor. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai•7mo ago
<@398749213795680259> kapa.ai is still learning and improving, please let us know how it did by reacting below
xenial-black
xenial-black•7mo ago
@kapa.ai where can i find the devOps Dashboard ?
kapa.ai
kapa.ai•7mo ago
Let me check the knowledge base for you. One moment! :books: ---------------------- I'm sorry, but the provided extracts do not contain information or a link to a DevOps Dashboard built with Refine. However, you can create your own dashboard using Refine's capabilities. For example, you can create a new dashboard page by creating a new dashBoardPage.tsx file in the pages folder and adding placeholder code to prevent TypeScript from throwing an error:
import { Typography } from "antd";

function DashBoardPage() {
return <Typography>This is the Dashboard page</Typography>;
}

export default DashBoardPage;
import { Typography } from "antd";

function DashBoardPage() {
return <Typography>This is the Dashboard page</Typography>;
}

export default DashBoardPage;
(Source: Setting up the dashboard page (https://refine.dev/blog/react-draggable-components-with-react-dnd#setting-up-the-dashboard-page)) You can also pass a custom dashboard page to the DashboardPage prop which is accessible on the root route:
const CustomDashboardPage = () => <div> Custom Dashboard Page </div>;

const App = () => (
<Refine
DashboardPage={CustomDashboardPage}
/>
);
const CustomDashboardPage = () => <div> Custom Dashboard Page </div>;

const App = () => (
<Refine
DashboardPage={CustomDashboardPage}
/>
);
(Source: Refine Component Documentation (https://refine.dev/docs/core/refine-component#dashboardpage-)) For more specific examples or templates, you may want to check the Refine GitHub repository (https://github.com/refinedev/refine) or the Refine documentation (https://refine.dev/docs). ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai•7mo ago
<@398749213795680259> kapa.ai is still learning and improving, please let us know how it did by reacting below
rising-crimson
rising-crimson•7mo ago
Hey @dc_alexyt, just wanted to paste the same answer here for the future if anyone wonders about this 😅 Currently Refine HR is under private development and we'll release it when its ready but cannot promise a date for now 😅 Until its released, you can check out other templates that can work for you at https://refine.dev/templates/
yappiest-sapphire
yappiest-sapphire•4mo ago
any update on this? I was hoping to use it and learn to build my own even if it's incomplete would be fine as i'm hoping to learn from it lol